我得到了一组我希望转换为 CSV 的 ActiveRecord 模型。我尝试研究像 FasterCSV 这样的 gem,但它们似乎只适用于字符串和数组,而不是 ActiveRecord 模型。
简而言之,我想转换:
user1 = User.first
user2 = User.last
a = [user1, user2]
至:
id,username,bio,email
1,user1,user 1 bio,user1 email
1,user2,user 2 bio,user2 email
有没有一种简单的 Rails 方法可以做到这一点?