我在3.2.1上,用sass-rails-3.2.4和sass-3.1.15 ...sass-rails幫手「image-url」,「asset-url」在rails中不起作用3.2.1
的資產管道的文件說:
asset-url("rails.png", image) becomes url(/assets/rails.png)
image-url("rails.png") becomes url(/assets/rails.png)
...
所以我做了以下文件:
# app/assets/stylesheets/public/omg.css.sass
body
background: asset-url('snake.gif', image)
#lol
background: image-url('snake.gif')
,當我訪問本地主機:3000/AS套/公/ omg.css我得到:
body {
background: asset-url("snake.gif", image); }
#lol {
background: image-url("snake.gif"); }
...我也試圖改變文件omg.css.scss,並改變了語法:
# app/assets/stylesheets/public/omg.css.scss
body {
background: asset-url('snake.gif', image);
}
#lol {
background: image-url('snake.gif');
}
但得到相同的結果...有沒有人有任何想法爲什麼這些助手不工作?
您是否曾經爲此找到過解決方案? – 2012-03-02 23:58:52
我的項目有2個樣式表(一個用於網頁,另一個用於應用程序)。我遇到了這個問題,但不是另一個? – Forrest 2012-04-11 23:46:25