Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,有一个名为的模型Order,在我的 Mongo 数据库中有这样的数据
Order
#<Order price: "100", receiver:{"name"=>"Betty", "cell_phone" =>"123"}>
我的问题是我不知道如何在我的 order.rb 文件中编写一个别名,该别名可以使用以下语句在我的接收器哈希中获取密钥“名称”
field :money_spent, type:Float, as: :price
有人可以告诉我这是否可行吗?