是否可以在 Rails 模型中使用条件语句?
我在想这样的事情:
if create
before_save do
self.position = self.track.position
end
else
acts_as_list :scope => :product_id
end
我基本上希望acts_as_list 在初始创建完成后生效。
是否可以在 Rails 模型中使用条件语句?
我在想这样的事情:
if create
before_save do
self.position = self.track.position
end
else
acts_as_list :scope => :product_id
end
我基本上希望acts_as_list 在初始创建完成后生效。