为什么以下(在开发模式下)错误地返回“304 not modified” – 在开发模式下运行时,Rails默认情况下不应禁用此类功能吗?
我的控制器看起来像这样:
class WidgetController < ApplicationController
def show
@widget = Widget.find(params[:id])
fresh_when(etag: etag_for(@widget), last_modified: @widget.updated_at)
end
private
def etag_for(*args)
args.flatten + [current_user, last_deploy]
end
def last_deploy
`git log --pretty=format:%H`.chomp
end
end
我不清楚为什么在我的Rails应用程序的开发模式下,这将返回“304 Not Modified”标题,我认为根据开发模式,这样的事情没有启用?
我在本地使用瘦Web服务器,我认为这有点不寻常,否则这是一个没有特殊条件的典型应用程序,或者在Rails 3.1.1上运行的情况
最佳答案 所以答案比那更容易:
在./config/environments/development.rb中我添加了一行:
config.middleware.delete(Rack::ConditionalGet)
我向Rails提交了这个“bug”以获得官方回复,问题可以在here at their Github issue tracker找到.