Ruby 每个循环用逗号分隔

Ruby each loop separate by commas

我试图让这个循环用逗号分隔结果:

<% @regions.each do |region| %>
  <%= link_to region.name, region_path(region) %>
<% end %>

如果我这样做,它会在最后一个结果后添加一个逗号:

<% @regions.each do |region| %>
  <%= link_to region.name, region_path(region) %>,&nbsp;
<% end %>

必有妙法

<%= safe_join(@regions.map { |region| link_to(region.name, region_path(region)) }, ', ') %>