ActionView :: Template :: Error(960.css未预编译) [英] ActionView::Template::Error (960.css isn't precompiled)

查看:190
本文介绍了ActionView :: Template :: Error(960.css未预编译)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个呈现部分内容的iframe,而不是主应用程序布局或资产管道的一部分。

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.1
Heroku

Rails 3.1 Heroku

推荐答案

样式表不包含在清单中(直接按名称或间接通过require_tree)不会被预编译,因此不会在生产环境中访问。

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.

您需要将表添加到要在环境application.rb中预编译的项目列表中。

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未预编译)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆