如何获得 CSS 的调试模式?
<%= stylesheet_link_tag 'application', :debug => Rails.env.development? %>
看起来并不像它的工作。我认为该资产仍在预编译中...我可以验证这一点,因为 firebug 没有报告正确的行。
<%= stylesheet_link_tag 'application', :debug => Rails.env.development? %>
Doesn't seem like its working. I think the asset is still being precompiled... I can verify this because firebug ain't reporting the right lines.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我怀疑您的development.rb 文件中可能没有设置此选项:
config.assets.debug = true
这样 on Rails 将为每个文件呈现一个链接(或脚本)标签。布局文件中不需要 :debug 选项,除非您想关闭调试模式 (=> false)。
有关详细信息,请参阅有关在开发模式下使用管道的 Rails 指南。
I suspect that you may not have this option set in your development.rb file:
config.assets.debug = true
With this on Rails will render a link (or script) tag for each file. You don't need a :debug option in your layout file unless you want to turn debug mode off (=> false).
See the Rails guide on using the pipeline in development mode for more information.