我在my_app_root / public / stylesheets / screen.css和我的application.html.erb中有“screen.css”@H_301_3@
<%= stylesheet_link_tag 'screen.css',:media => 'screen' %>
根据here它应该工作,但我的rails服务器说:@H_301_3@
Processing by PagesController#home as HTML
Rendered pages/home.html.erb within layouts/application (0.0ms)
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)@H_301_3@Started GET “/assets/screen.css” for 127.0.0.1 at 2011-06-18 11:27:53 +1200
Served asset /screen.css – 404 Not Found (2ms) (pid 10966)@H_301_3@ActionController::RoutingError (No route matches [GET] “/assets/screen.css”):@H_301_3@
我在这里做错了什么?@H_301_3@
提前致谢@H_301_3@
解决方法
What am I doing wrong here?@H_301_3@
没有什么,你只是使用默认3.1安装,它使用新的基于链轮的资产管道.@H_301_3@
将您的样式表放入/ app / assets / stylesheets中并使用@H_301_3@
<%= stylesheet_link_tag 'application.css' %>
在你的意见@H_301_3@
新管道将采用该文件夹中的所有样式表,并将其自动编译为单个文件.@H_301_3@
==@H_301_3@
或者,您可以设置在您的application.rb中关闭新的pipline@H_301_3@
config.assets.enabled = false