如何获得 CSS 的调试模式?

发布于 2024-12-04 21:16:33 字数 173 浏览 0 评论 0原文

<%= 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羁客 2024-12-11 21:16:33

我怀疑您的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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文