我想要将产品图片链接到产品展示页面。我试过了:
<%= 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中执行此操作的最佳方式?
答案 0 :(得分:1)
<%= link_to image_tag(product.photos.first.image.url(:small)), product %>