标签: ruby-on-rails
这段代码运行正常,但我确信rails有更好的方法来实现相同的结果。
<%= link_to (image_tag post.image1(:thumb)), (posts_path+"/"+(post.id).to_s) %>
答案 0 :(得分:0)
这也应该有效:
<%= link_to (image_tag post.image1(:thumb)), post %>