我的模型:
class MyModel < ActiveRecord::Base
before_save [:method1!, :method2!]
#..........
private
def method1!
puts 'method1'
end
def method2!
puts 'method2'
end
end
method1
当我保存模型时,method2
由于某种原因没有调用这些方法。我的代码有错误吗?
我的模型:
class MyModel < ActiveRecord::Base
before_save [:method1!, :method2!]
#..........
private
def method1!
puts 'method1'
end
def method2!
puts 'method2'
end
end
method1
当我保存模型时,method2
由于某种原因没有调用这些方法。我的代码有错误吗?