Mongoid 中两个模型之间的关系是否明确需要外键?例如。
class User
include Mongoid::Document
has_many :posts
end
class Post
include Mongoid::Document
belongs_to :user
# Is this necessary below?
field :user_id, type: Integer
end
在讨论关系时,Mongoid 网站上的文件没有表明任何字段声明,这就是我问的原因。