2
在上一個我的樣本項目中軌的版本我將訪問圖像作爲如何訪問rails 3.1中的圖像?
<%= image_tag(product.image_url, :class => 'list_image') %>
我怎樣才能做到在軌3.1相同的,因爲圖像文件夾已被移動到app/assets/
?
在上一個我的樣本項目中軌的版本我將訪問圖像作爲如何訪問rails 3.1中的圖像?
<%= image_tag(product.image_url, :class => 'list_image') %>
我怎樣才能做到在軌3.1相同的,因爲圖像文件夾已被移動到app/assets/
?
鏈接是這樣的:
<img src="/images/my-image.jpg" />
成爲:
<img src="/assets/my-image.jpg" />
Rails的做了一些魔法來弄清楚,它實際上是在images目錄。所以不需要指定圖像目錄。