这是一个非常初学者的问题,但我已经搜索并找不到任何东西。我试图遍历一个对象,然后将信息存储在一个数组(或对象?)中,以便我可以吐出一串项目。
<% @da = [] %>
<% @report.data_items.each do |di| %>
<% if di.status == "Complete" %>
<% @da += di.url_metric.da %> #not sure how to append to the end of the array
<% end %>
<% end %>
帮助?我应该使用数组还是对象?