0

我想确保

MyModel.new # ...raises an error...

然后

MyOtherModel::create_my_model # ...only this should work!

有什么好方法可以做到这一点?

谢谢你。

4

1 回答 1

0

没有什么直接的AFAIK。以下应该可以工作。

class MyModel < ActiveRecord::Base
  ..
  belongs_to :my_other_model
  def initialize( need_this_argument = nil )
    raise if need_this_argument.nil?
    super() # It is important to put the () here.
  end
end

class MyOtherModel < ActiveRecord::Base
...
  has_one :my_model
  accepts_nested_attributes_for :my_model
  def create_my_model(arguments)
    MyModel.new( true ) # Pass a non nil argument
  end
end

MyModel.new #=> RuntimeError
a =MyOtherModel.new
b = a.create_my_model
..# 在这里做你的事情
b.save
a.save

于 2012-08-03T20:03:25.553 回答