我在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>
这就是我想要的
感谢任何帮助,谢谢!
答案 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) %>