如何在Mongoid中保存embeds_many关系?

时间:2014-01-15 13:56:23

标签: ruby-on-rails mongoid

class Hotel
  include Mongoid::Document

  field :title, type: String

  embeds_many :comments
end

class Comment
  include Mongoid::Document

  field :text, type: String

  belongs_to :hotel

  validates :text, presence: true
end

h = Hotel.create('hotel') 

   => <#Hotel _id: 52d68dd47361731d8b000000, title: "hotel">

c = Comment.new(text: 'text')

   => <#Comment _id: 52d68f3d7361731d8b040000, text: "text", hotel_id: nil>

h.comments << c

   => [#<Comment _id: 52d68f3d7361731d8b040000, text: "text", hotel_id: nil>]
h.save

   => true
Hotel.last.comments

   => []

变体2

h.comments << Comment.new(text: 'new', hotel_id: h.id)

   => [<#Comment _id: 52d68f3d7361731d8b040000, text: "text", hotel_id: nil>, <#Comment _id: 52d691e17361731d8b050000, text: "new", hotel_id: BSON::ObjectId('52d68dd47361731d8b000000')>]

h.save

   => true
Hotel.last.comments

   => []

1 个答案:

答案 0 :(得分:6)

我看到两个可能的问题:

  1. Hotel.last不一定是Hotel 52d68dd47361731d8b000000。你应该看h.comments或偏执,h.reloadh.comments
  2. 你们的关系很混乱。
  3. 来自fine manual

      

    嵌入式1-n

         

    儿童被嵌入其中的一对多关系   父文档是使用Mongoid的embeds_many和   embedded_in宏。

         

    <强>定义

         

    关系的父文档应使用embeds_many宏   表示它有n个嵌入子项,文档所在的位置   嵌入式使用embedded_in

    所以你的关系应该像这样定义:

    class Hotel
      embeds_many :comments
    end
    
    class Comment
      embedded_in :hotel
    end
    

    当你说belongs_to: hotel时,你在Comment中使用embedded_in :hotel

    文档也说:

      

    关系的双方都需要定义才能使其正常工作。

    并且您的关系在一侧配置不正确,因此无法正常工作。