rails开发 之 active record
How to use new_record?, changed? and persisted? methods in rails in this example
参考: https://stackoverflow.com/a/50512456
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # new_record? car = Car.new # => initialize a new Car object Car.new_record? # => true # persisted? car.save car.persisted? # => true # changed? car.model = 'New release model S' car.changed? # => true # destroyed? car.destroy car.destroyed? # => true |