所以,我正在使用Ruby MongoDB驱动程序,我希望像这样插入和对象:
db.insert_one({
'game_id' => @token,
'board' => {
'tiles' => @board.tiles
}
})
其中@board是Board类的实例。
class Board
attr_accessor :tiles
def initialize()
@tiles = [Tile.new, Tile.new]
end
end
和Tile
class Tile
def initialize()
@x = 1, @y = 1
end
def to_json(options)
{"x" => @x, "y" => @y}.to_json
end
end
所以最后,'瓷砖'字段应如下所示:
'tiles': [{x:1, y:1}, {x:1, y:1}]
我收到此错误:
undefined method `bson_type' for #<Tile:0x007ff7148d2440>
我使用的宝石:&#39; sinatra&#39;,&#39; mongo(2.0.4)&#39;和&#39; bson_ext&#39; (所有需要使用Bundler.require)。谢谢!
答案 0 :(得分:2)
您可以简单地将@ board.tiles从Objects
的集合转换为ruby Hashes
的集合:
class Tile
def initialize()
@x = 1, @y = 1
end
def raw_data
{"x" => @x, "y" => @y}
end
end
db.insert_one({
'game_id' => @token,
'board' => {
'tiles' => @board.tiles.map(&:raw_data)
}
})
对于更复杂的事情,我建议你使用mongoid http://mongoid.org/en/mongoid/