我正在读这个mongoid link,它想出了这个:
class Person
include Mongoid::Document
has_many :posts
end
class Post
include Mongoid::Document
field :title, type: String
belongs_to :person
end
mongoid如何知道has_many :posts
引用Post
类?如果它是has_many :post
会不一样?
答案 0 :(得分:0)
正如current Mongoid documentation中所示,Mongoid使用ActiveSupport::Inflector
在单数和复数模型和表名之间进行转换。