将link_to与to_sentence一起使用时出错

时间:2017-05-22 02:35:35

标签: ruby-on-rails

我在Rails中使用link_to和to_sentence时遇到了一些问题。

使用这行代码,html输出错误。

<%= @story.collections.map{ |u| link_to(u.name, collection_path(u)).html_safe }.to_sentence %>

此代码在页面上呈现为文本而非链接

<a href="/collections/One">One</a>, <a href="/collections/Two">Two</a>, and <a href="/collections/Three">Three</a>

这就是我想要的

OneTwoThree

感谢任何帮助,谢谢!

1 个答案:

答案 0 :(得分:0)

使用safe join作为辅助方法,如下所示:

帮手:

def story_links(story)
  links = @story.collections.map{ |u| link_to(u.name, collection_path(u)).html_safe }
  safe_join(links, ',')
end

在视图中:

<%= story_links(@story) %>