0
我想讓我的產品圖片鏈接到產品展示頁面。我已經試過:在Rails 4中製作圖像鏈接的最佳方法是什麼?
<%= 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中最好的方法是什麼?
第一次調用'link_to'的參數順序是錯誤的。它的簽名是'link_to(body,url,html_options = {})''。 –