当时我用这段代码产生输出:
<h3>
<% @partner.employees.each do |s| %>
<%= "#{s.forename} #{s.lastname} " %>
<% end %>
<%= " ..." %></h3>
例如,这会产生以下输出:
Josef Smith Daniel Crak ....
我的问题是我试图得到这个输出:
Josef Smith, Daniel Crak ....
我尝试过这样的事情:
@partner.employees.all.map(:forname, :lastname)
但这产生了这个错误:
wrong number of arguments (2 for 0)
我希望有人可以帮助我找到一个简短的解决方案!谢谢