问题描述
我有一个 iframe,它呈现部分而不是主应用程序布局或资产管道的一部分.
我想包含一些样式表,但出现此错误:
ActionView::Template::Error(960sm.css 未预编译):
Rails 3.1Heroku
未包含在清单中的样式表(直接按名称或通过 require_tree 间接)未预编译,因此无法在生产中访问.
需要将sheet添加到环境application.rb中要预编译的项目列表中.
config.assets.precompile += ['960sm.css']然后在视图中访问它:
stylesheet_link_tag('960sm')I have an iframe which renders a partial and is not part of the main application layout or asset pipeline.
I'd like to include some style sheets, however I am getting this error:
ActionView::Template::Error (960sm.css isn't precompiled):
Rails 3.1Heroku
Style sheets that are not included in a manifest (directly by name or indirectly via require_tree) are not precompiled, so will not accessible in production.
You need to add the sheet to the list of items to precompile in the environment application.rb.
config.assets.precompile += ['960sm.css']
And then access it in the view:
stylesheet_link_tag('960sm')
这篇关于ActionView::Template::Error (960.css 未预编译)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!