我有一个项目模型:
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 创建一本书。
这怎么可能?