如何显示对象中的所有值?

时间:2011-09-23 18:56:35

标签: ruby mongoid

这是一个Mongoid对象,但我认为它适用于所有对象。当@product看起来像这样时,如何将@product拆分为键值对:

#<Product _id: 4e7cd178e66de72d70000010, _type: nil, 
created_at: 2011-09-23 18:35:36 UTC, 
updated_at: 2011-09-23 18:35:36 UTC, brand: "crystalrock", 
name: "Crazy Fool Specialty Tank", retailer: nil, model: nil, 
sku: nil store: {"id"=>"36033", "name"=>"Ed Hardy"}, 
product_id: "684", sku_number: "D9WAFDCR", category_primary: "Tanks">

我认为这将是一种对象方法,但我没有看到一种有效的方法。

1 个答案:

答案 0 :(得分:1)

看起来@ product.attributes是一个有效的Mongoid方法。