我有问题。下面的代码是rails中ruby的视图代码
<table >
<tr>
<th>Url</th>
<th>Tags</th>
</tr>
<% @array_bookmark = @bookmark.class == Array ? @bookmark : [@bookmark] %>
<% Array(@bookmark).each do |book| %>
<tr>
<td><%= book.url %></td>
<td><%= book.tags %></td>
</tr>
<% end %>
</table>
这会产生类似的东西:
Url Tags
www.mrabhiram.tumblr.com abhi
www.mrabhiram.tumblr.com blog
google.com google
google.com blog
但是,我想得到它
Url Tags
www.mrabhiram.tumblr.com abhi,blog
google.com google,blog
谁能给我解决方案?它应该足够通用以迭代数组。
先感谢您。