我正在尝试以 CSV 格式呈现由 @people 变量定义的数组。当我在控制器中使用以下代码时,它会返回一个 CSV 文件,其中填充了对象 ID 列(即 0x59ff1c0)。我究竟做错了什么?
def index
@filter_criteria = lambda { |ped| (ped.id.nil? || ped.mother_id.nil?) }
@people = BuildList.build_list.persons.find_all(&@filter_criteria)
respond_to do |format|
format.html
format.csv { send_data @people.to_csv }
end
end