link_to语法?想要一起超链接(variable.id +“string”)

时间:2013-01-09 11:12:22

标签: ruby-on-rails string concatenation link-to

link_to feed_item.votes_for + "Into it!", into_it_micropost_path(feed_item.id)

我基本上希望超链接成为字符串“Into it!”旁边的变量。

我怎样才能做到这一点?感谢

1 个答案:

答案 0 :(得分:6)

实际上在我看来你的版本应该可以正常工作。

也许试着用另一种方式:

link_to "#{feed_item.votes_for} Into it!", into_it_micropost_path(feed_item.id)

不要忘记,要显示链接,您必须将其放在<%= %>