Rails更新记录不需要通过ActiveRecord的验证的方式


Post.update_attribute!(:name, "new name")

Post.update_attributes(:name, "new name", :name2, "value2")

这些更新方法不需要去告诉ActiveRecord。
Both of these will update an object without having to explicitly tell ActiveRecord to update.


阅读量: 520
发布于:
修改于: