将参数传递给轨道中另一个控制器的路径

时间:2012-08-30 21:19:17

标签: ruby-on-rails

这段代码运行正常,但我确信rails有更好的方法来实现相同的结果。

<%= link_to (image_tag post.image1(:thumb)), (posts_path+"/"+(post.id).to_s) %>

1 个答案:

答案 0 :(得分:0)

这也应该有效:

<%= link_to (image_tag post.image1(:thumb)), post %>