link_to image_tag with inner text or html in rails

后端 未结 9 1574
生来不讨喜
生来不讨喜 2020-12-02 16:59

I want to output the following with Ruby on Rails link_to and image_tag methods:

Lorem Ipsum 

        
9条回答
  •  被撕碎了的回忆
    2020-12-02 17:32

    You can use blocks as an alternative to the string interpolation with correct usage html_safe. For example:

    <%= link_to '#' do %>
      Lorem Ipsum <%= image_tag('/images/menu-arrow-down.gif') %>
    <% end %>
    

提交回复
热议问题