Can I make an array of links using link_to in Rails?

前端 未结 5 1933
予麋鹿
予麋鹿 2021-02-19 13:29

I have a list of values in url/title pairs that I\'d like to display. (More specifically, each object has its own list of links, some with 0, some with 1, some with more.) I w

5条回答
  •  自闭症患者
    2021-02-19 14:16

    Try

    <%= links.map{|wl| link_to wl.title, wl.url}.join(', ').html_safe %>
    

    This instructs Rails to not escape the text.

提交回复
热议问题