<%= stylesheet_link_tag 'application', :debug => Rails.env.development? %>
似乎不起作用。我认为该资产仍在进行预编译......我可以验证这一点,因为firebug没有报告正确的行。
答案 0 :(得分:0)
我怀疑您可能没有在development.rb文件中设置此选项:
config.assets.debug = true
使用此功能,Rails将为每个文件呈现链接(或脚本)标记。除非要关闭调试模式(=&gt; false),否则布局文件中不需要:debug选项。
有关详细信息,请参阅using the pipeline in development mode上的Rails指南。