0

我有 2 个 Mongoid 类:

class Reservation
  include Mongoid::Document
  belongs_to :listing, class_name: 'Listing', inverse_of: 'Reservation'
end

class Listing
  include Mongoid::Document
  has_many :reservations, class_name: 'Reservation', foreign_key: :listing_id
end

如果我通过它找到列表_id#save!则不会引发错误

listing = Listing.find(...)
listing.save! #=> true

然后我初始化一个新的预订对象:

reservation = Reservation.find_or_initialize_by(params)
reservation.save! #=> error, exptected though, because I didn't set the listing_id yet

Mongoid::Errors::Validations: 
message:
  Validation of Reservation failed.
summary:
  The following errors were found: Listing can't be blank
resolution:
  Try persisting the document with valid data or remove the validations.
from /home/ec2-user/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/bundler/gems/mongoid-71c29a805990/lib/mongoid/persistable.rb:78:in `fail_due_to_validation!'

所以我将较早的列表的 id 分配给预订:

reservation.listing_id = listing._id
reservation.listing_id #=> nil

我什至不能分配listing_id 字段?!

reservation.listing    #=> returns the associated document no problem though..
reservation.listing.save! #=> error

Mongoid::Errors::Validations: 
message:
  Validation of Listing failed.
summary:
  The following errors were found: Reservations is invalid
resolution:
  Try persisting the document with valid data or remove the validations.
from /home/ec2-user/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/bundler/gems/mongoid-71c29a805990/lib/mongoid/persistable.rb:78:in `fail_due_to_validation!'

无法保存没有有效列表的预订,无法保存没有有效预订的列表

这是什么?!?!

请拯救我的一天...

4

1 回答 1

2

您实际上必须在 中指定逆字段inverse_of,因此请尝试使用以下内容:

class Reservation
  include Mongoid::Document
  belongs_to :listing, class_name: 'Listing', inverse_of: :reservations
end

class Listing
  include Mongoid::Document
  has_many :reservations, class_name: 'Reservation', inverse_of :listing
end

我还替换了has_many关系的foreign_keyby inverse_of,让Mongoid猜测外键名更容易:)

然后,检查您指定的验证并且您没有包含在您的帖子中,但是如果您首先创建一个列表,您应该能够毫无问题地为其创建预订。

此外,直接分配对象也很好,而且通常更容易,所以你可以直接写reservation.listing = my_listing

于 2016-09-09T08:14:02.100 回答