为什么我的应用程序返回@users = User.where(acceptance: true)
为#<User:0x007f9b0d444328>
?
当控制台返回与以下相同的查询时:
[#<User id: 1, acceptance: "t", created_at: "2012-09-27 13:01:50", updated_at: "2012-09-27 13:02:52">]
我希望用户作为哈希传递给这种东西:
respond_to do |format|
format.html
format.csv { render text: @users.to_csv }
end