11
Rails: update_attribution vs update_attribut
Object.update_attribute(:only_one_field, "Some Value") Object.update_attributes(:field1 => "value", :field2 => "value2", :field3 => "value3") Cả hai sẽ cập nhật một đối tượng mà không cần phải thông báo rõ ràng cho AR để cập nhật. API Rails cho biết: cho update_attribution Cập nhật một thuộc tính duy nhất và lưu bản ghi …