在Rails 4中建立图像链接的最佳方法?

时间:2014-03-28 03:29:00

标签: ruby-on-rails ruby

我想要将产品图片链接到产品展示页面。我试过了:

<%= link_to product.photos.first.image.url(:small), product%>

产生

<a href="/products/64">/system/photos/images/000/000/023/small/4462867927_3741423c39_o.jpg?1395899030</a>

我也试过

          <a href="<%= products_path(product) %>"> <%= image_tag product.photos.first.image.url(:small) %> </a>

产生:

<a href="/products.64"> <img alt="4462867927 3741423c39 o" src="/system/photos/images/000/000/023/small/4462867927_3741423c39_o.jpg?1395899030"> </a>

那也不对。什么是在Rails中执行此操作的最佳方式?

1 个答案:

答案 0 :(得分:1)

<%= link_to image_tag(product.photos.first.image.url(:small)), product %>