如何在一行中执行以下操作?
<% song.albums.each do |album| %>
<%= link_to album.title, album %><br />
<% end %>
我尝试了两种无效的方法。
这给了我整个数组:
<%= song.albums.each {|album| link_to album.title, album } %>
这个输出是空白的:
<% song.albums.each {|album| link_to album.title, album } %>