rails 3 中的asset_host 发生了什么?早些时候,我可以将以下代码放入 development.rb 并获取开发中不存在的所有资产:
ActionController::Base.asset_host = proc do |source, request|
unless File.exist?(File.join(RAILS_ROOT, 'public', source.sub(/\?\d+$/, '')))
'http://example.com'
end
end
但是在 Rails 3 中没有这样的方法,谷歌也没有帮助我。