オームモデルの木があります。ゲームにはプレイヤーがいて、プレイヤーにはピースがあります。詳細は以下のとおりです。基本的に、構造をjsonとしてレンダリングしようとすると、エンコードエラーが表示されます。
NoMethodError(#Piece:0x00000102b8dbb8の未定義のメソッド `encode_json'):
ただし、プレーヤーとそのピースはエラーなしで出力できます。
Player = Player.create(:name => "Toby")
game.player << player
player.pieces << Piece.create(:name => "Rook")
# works fine
logger.debug(player.to_hash.to_json)
# FAILS with the above error
logger.debug(game.to_hash.to_json)
私の最善の推測は、コレクションのネストに、ここで問題を引き起こしている何かがあるということです。
何か案は?
class Game < Ohm::Model
collection :player, Player
def to_hash
super.merge(:players => players)
end
end
class Player < Ohm::Model
reference :game, Game
collection :pieces, Piece
attribute :name
def to_hash
super.merge(:name => name, :pieces => pieces)
end
end
class Piece < Ohm::Model
reference :player, Player
def to_hash
super.merge(:name => name)
end
end