"Chained"与Mongoid和Rails的关系(1:n:m)



我试图在Rails(3.2.12)与Mongoid(3.1.2)中实现一个非常简单的"多重关系"。我有三个模型:

class User
  include Mongoid::Document
  field :name
  has_many :collections
end
class Collection
  include Mongoid::Document
  field :name
  belongs_to :user
  has_many :things
end
class Thing
  include Mongoid::Document
  field :name
  belongs_to :collection
end

所以基本上有一个用户有集合还有一个集合有"东西"嗯…第一个问题:这可能吗?如果不是,为什么不呢?: -)

我现在可以创建用户(从rails控制台或通过web),我可以创建属于用户的集合。但当我现在尝试创造一个"东西"时……它不会被创建:

2.0.0-p0 :014 >   u = User.first
 => #<User _id: 514b2b32e05658e1f1000005, name: "test"> 
2.0.0-p0 :015 > c = Collection.create!(name: "somename", user: u)
 => #<Collection _id: 514b30f0e05658ca67000001, name: "somename", user_id: "514b2b32e05658e1f1000005"> 
2.0.0-p0 :016 > t = Thing.create!(name: "a thing", collection: c)
 => #<Thing _id: 514b3120e05658ca67000002, name: "a thing", collection_id: "514b30f0e05658ca67000001"> 
2.0.0-p0 :017 > Thing.first
 => nil 

"Collection"创建得很好:

2.0.0-p0 :018 > Collection.first
 => #<Collection _id: 514b2b65e05658e1f1000006, name: "test", user_id: "514b2b32e05658e1f1000005"> 

将Collection类名称更改为其他名称,例如'Stockpile'。MongoDB使用"集合"作为它的术语的一部分,所以它可能不适合你的模型。

相关内容

  • 没有找到相关文章

最新更新