我理解使用的概念,embeds_many
但是embeds_one
当您在嵌入式文档中只有一个字段时,特别是当您在 mongoid.org 上的 1-N 嵌入式文档示例中显示时,它的用途是什么?在父文档中创建一个字段不是更好吗?
mongoid.org 上的示例:
class Band
include Mongoid::Document
embeds_one :label
end
class Label
include Mongoid::Document
field :name, type: String
embedded_in :band
end