Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 CSS 文件中调用背景图像时遇到问题。该问题仅发生在生产中。我花了很多时间在谷歌上搜索,并编写了以下代码的许多变体,但我的生产站点似乎根本不想渲染它。以下代码有什么问题?
background: url(<%= image_path 'magnifyingglass.png' %>);
您可能会遇到与资产管道中的预编译资产相关的生产问题。在部署生产之前检查您的配置并运行 rake assets:precompile。
http://guides.rubyonrails.org/asset_pipeline.html