Ruby convert Object to Hash

前端 未结 17 1671
滥情空心
滥情空心 2020-12-12 10:35

Let\'s say I have a Gift object with @name = \"book\" & @price = 15.95. What\'s the best way to convert that to the Hash {na

17条回答
  •  执笔经年
    2020-12-12 11:10

    Just say (current object) .attributes

    .attributes returns a hash of any object. And it's much cleaner too.

提交回复
热议问题