0

rails server跑去http://localhost:3000

我有 <%= stylesheet_link_tag "application", :media => "all" %>

在 layout.html.erb 中

这是application.css

 /*
  * This is a manifest file that'll be compiled into  application.css, which will include all the files  
* listed below.   *   * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,  
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.   *   * You're  free to add application-wide styles to this file and they'll appear at the top of the   * compiled file, but it's generally better to create a new file per style scope.  *   
*= require_self   
*= require_tree .  
*/

不应该像这样编译

    <link href="/assets/twitter-bootstrap-static/bootstrap.css?body=1" media="all" rel="stylesheet" type="text/css" /> 
 <link href="/assets/twitter-bootstrap-static/fontawesome.css?body=1" media="all" rel="stylesheet" type="text/css" />  
<link href="/assets/bootstrap_and_overrides.css?body=1" media="all" rel="stylesheet" type="text/css" />

我错过了什么?我正在使用 rails 3.2.8 我有

# Enable the asset pipeline
config.assets.enabled = true

在应用程序.rb

更新

我跑了之后 RAILS_ENV=development bundle exec rake assets:precompile

我可以看到编译的资产

4

1 回答 1

1

资产通常不会在开发模式下编译:http: //guides.rubyonrails.org/asset_pipeline.html#in-development

如果需要,该参考还包含有关预编译资产的信息。

于 2013-09-07T05:20:15.797 回答