0

我有一个项目模型:

class Item < ActiveRecord::Base
  attr_accessible :author, :title
end

还有一个 Book 模型:

class Book < ActiveRecord::Base
  attr_accessible :item_id, :plot

  belongs_to_ :item
end

我希望能够通过使用创建一本书

Book.new(:title=>"Title", :author=>"Author", :plot=>"BlaBla")
Book.save

它将创建一个带有标题和作者的项目,并使用创建的项目 ID 创建一本书。

这怎么可能?

4

2 回答 2

1

您需要使用:after_create回调和 virtual_attributes 如下。

在你的书模型中写下这个

attr_accessor :title, :author

attribute_accessible :title, :author, :plot

after_create :create_item

def create_item
  item = self.build_item(:title => self.title, :author => self.author)
  item.save
end
于 2012-11-23T15:29:03.283 回答
1

使用 before_save 或 before_create

class Book
  attr_accessor :title, :author

  before_save :create_item

  #before_create :create_item

  def create_item
    if self.title.present? && self.autor.present?
      item = Item.new(:title => self.title, :author => self.author)
      item.save(:validate => false)
      self.item = item # or self.item_id = item.id
    end
  end
end
于 2012-11-23T15:56:36.567 回答