ruby-on-rails 将link_to与to_sentence一起使用时出错

ijxebb2r  于 2023-01-27  发布在  Ruby
关注(0)|答案(2)|浏览(145)

我在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
任何帮助都很感激,谢谢!

gdx19jrr

gdx19jrr1#

使用安全联接作为辅助方法,如下所示:
在帮助器中:

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) %>
sr4lhrrt

sr4lhrrt2#

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

相关问题