请贴出 (in /Users/33kkk/ruby/rails_projects/sample_app/app/assets/stylesheets/custom.css.scss:8) 这里的代码,另外,你的代码能不能用 markdown 排版下?
看一下你 Rails 的 log 输出,另外干嘛要显式使用blog_id
这个参数啊?
看看 log 里边类似于这样的输出:
Started GET "/" for 127.0.0.1 at 2014-05-30 16:33:14 +0800
Processing by xxxxxController#index as HTML
直接在项目里边打开类进行重写。可以参考一下 Spree 或者 RefineryCMS 的 decorator 机制。
好激动!!!
同意一楼!
楼主上豆瓣吧。 或者,搜房网也可以考虑下。 最后,楼主是要在哪个城市租房?
顶。
是指 调试吧?
:plus1:
楼主是为了庆祝 520 吗
彪悍的人生不需要解释!
舌头。。。你们领导想象力超群,卖萌啊
恰巧搜到了这个框架wombat,看起来应该不错,提供了一套 DSL,用的时候提供一个入口,然后提供需要的 XPath 或者 Css selector,就可以提取到结构化数据了。
http://ruby-china.org/topics/16678 这里有个重复的帖子:
2.3.2 CSS and Sass When using the asset pipeline, paths to assets must be re-written and sass-rails provides -url > and -path helpers (hyphenated in Sass, underscored in Ruby) for the following asset classes: image, font, video, audio, JavaScript and stylesheet.
image-url("rails.png") becomes url(/assets/rails.png) image-path("rails.png") becomes "/assets/rails.png"
原文来自http://guides.rubyonrails.org/asset_pipeline.html#coding-links-to-assets
你只要将你的代码改为:
/* xxx.css.scss */
.content {
background: image-url('index_backgroud.png') no-repeat ;
}
即可。
最后部署到 production 应该就会是类似这样的了:
background: url(/assets/index_backgroud2-02c1183cb28a4fdfed9cae10442f0a93.png);
#42 楼 @wujian_hit 嗯嗯,感谢回答