0
我是MongoId的新手。我通過使用embeds_many和embedded_in來看到該文檔。只是想知道我需要把它作爲一對嗎?MongoId:如何正確指定關係
class Band
include Mongoid::Document
embeds_many :albums
end
class Album
include Mongoid::Document
field :name, type: String
embedded_in :band
end
感謝
AFAIK python Django是唯一不需要你在兩邊定義任何關係的框架......任何其他框架都要求你定義關係兩邊的關係 –