保存所有字段

Save 会保存所有的字段,即使字段是零值

  1. db.First(&user)
  2. user.Name = "jinzhu 2"
  3. user.Age = 100
  4. db.Save(&user)
  5. // UPDATE users SET name='jinzhu 2', age=100, birthday='2016-01-01', updated_at = '2013-11-17 21:34:10' WHERE id=111;

Update/Updates

使用 UpdateUpdates 可以更新选定的字段

  1. // 更新单个字段
  2. // the user of `Model(&user)` needs to have primary key value, it is `111` in this example
  3. db.Model(&user).Update("name", "hello")
  4. // UPDATE users SET name='hello', updated_at='2013-11-17 21:34:10' WHERE id=111;
  5. // 根据条件更新单个字段
  6. db.Model(&user).Where("active = ?", true).Update("name", "hello")
  7. // UPDATE users SET name='hello', updated_at='2013-11-17 21:34:10' WHERE id=111 AND active=true;
  8. // 通过 `struct` 更新多个字段,不会更新零值字段
  9. db.Model(&user).Updates(User{Name: "hello", Age: 18, Active: false})
  10. // UPDATE users SET name='hello', age=18, updated_at = '2013-11-17 21:34:10' WHERE id = 111;
  11. // 通过 `map` 更新多个字段,零值字段也会更新
  12. db.Model(&user).Updates(map[string]interface{}{"name": "hello", "age": 18, "actived": false})
  13. // UPDATE users SET name='hello', age=18, actived=false, updated_at='2013-11-17 21:34:10' WHERE id=111;

注意 当通过 struct 更新时,GORM 只会更新非零字段。 如果您想确保指定字段被更新,你应该使用 Select 更新选定字段,或使用 map 来完成更新操作

更新选定字段

如果您想要在更新时选定、忽略某些字段,您可以使用 SelectOmit

  1. // Select 与 Map
  2. // the user of `Model(&user)` needs to have primary key value, it is `111` in this example
  3. db.Model(&user).Select("name").Updates(map[string]interface{}{"name": "hello", "age": 18, "actived": false})
  4. // UPDATE users SET name='hello' WHERE id=111;
  5. db.Model(&user).Omit("name").Updates(map[string]interface{}{"name": "hello", "age": 18, "actived": false})
  6. // UPDATE users SET age=18, actived=false, updated_at='2013-11-17 21:34:10' WHERE id=111;
  7. // Select 与 Struct
  8. DB.Model(&result).Select("Name", "Age").Updates(User{Name: "new_name"})
  9. // UPDATE users SET name='new_name', age=0 WHERE id=111;

更新钩子

对于更新操作,GORM 支持 BeforeSaveBeforeUpdateAfterSaveAfterUpdate 钩子,这些方法将在更新记录时被调用,详情请参阅 钩子

  1. func (u *User) BeforeUpdate(tx *gorm.DB) (err error) {
  2. if u.Role == "admin" {
  3. return errors.New("admin user not allowed to update")
  4. }
  5. return
  6. }

批量更新

如果您尚未通过 Model 指定记录的主键,则 GORM 会执行批量更新

  1. // 通过 struct 只能更新非零值,若要更新零值,可以使用 map[string]interface{}
  2. db.Model(User{}).Where("role = ?", "admin").Updates(User{Name: "hello", Age: 18})
  3. // UPDATE users SET name='hello', age=18 WHERE role = 'admin;
  4. db.Table("users").Where("id IN (?)", []int{10, 11}).Updates(map[string]interface{}{"name": "hello", "age": 18})
  5. // UPDATE users SET name='hello', age=18 WHERE id IN (10, 11);

阻止全局更新

如果在没有任何条件的情况下执行批量更新,GORM 不会执行该操作,并返回ErrMissingWhereClause错误

您可以使用 1 = 1 之类的条件来强制全局更新

  1. db.Model(&User{}).Update("name", "jinzhu").Error // gorm.ErrMissingWhereClause
  2. db.Model(&User{}).Where("1 = 1").Update("name", "jinzhu")
  3. // UPDATE users SET `name` = "jinzhu" WHERE 1=1

更新的记录数

  1. // 通过 `RowsAffected` 得到更新的记录数
  2. result := db.Model(User{}).Where("role = ?", "admin").Updates(User{Name: "hello", Age: 18})
  3. // UPDATE users SET name='hello', age=18 WHERE role = 'admin;
  4. result.RowsAffected // 更新的记录数
  5. result.Error // 更新的错误

高级用法

通过 SQL 表达式更新

GORM 允许通过 SQL 表达式更新列

  1. DB.Model(&product).Update("price", gorm.Expr("price * ? + ?", 2, 100))
  2. // UPDATE "products" SET "price" = price * '2' + '100', "updated_at" = '2013-11-17 21:34:10' WHERE "id" = '2';
  3. DB.Model(&product).Updates(map[string]interface{}{"price": gorm.Expr("price * ? + ?", 2, 100)})
  4. // UPDATE "products" SET "price" = price * '2' + '100', "updated_at" = '2013-11-17 21:34:10' WHERE "id" = '2';
  5. DB.Model(&product).UpdateColumn("quantity", gorm.Expr("quantity - ?", 1))
  6. // UPDATE "products" SET "quantity" = quantity - 1 WHERE "id" = '2';
  7. DB.Model(&product).Where("quantity > 1").UpdateColumn("quantity", gorm.Expr("quantity - ?", 1))
  8. // UPDATE "products" SET "quantity" = quantity - 1 WHERE "id" = '2' AND quantity > 1;

不使用钩子和时间追踪

如果您想在更新时跳过 钩子 方法和自动更新时间追踪, 您可以使用 UpdateColumnUpdateColumns

  1. // 更新单列,用法类似于 `Update`
  2. db.Model(&user).UpdateColumn("name", "hello")
  3. // UPDATE users SET name='hello' WHERE id = 111;
  4. // 更新多列,用法类似于 `Updates`
  5. db.Model(&user).UpdateColumns(User{Name: "hello", Age: 18})
  6. // UPDATE users SET name='hello', age=18 WHERE id = 111;
  7. // 配合 Select 更新多列,用法类似于 `Updates`
  8. db.Model(&user).Select("name", "age").UpdateColumns(User{Name: "hello"})
  9. // UPDATE users SET name='hello', age=0 WHERE id = 111;

检查字段是否有变更?

GORM 提供的 Changed 方法可以在 Before 钩子中检查字段是否有变更

Changed 方法只能与 UpdateUpdates 方法一起使用,它只是检查 Model 对象字段的值与 UpdateUpdates 的值是否相等,以及该字段是否会被更新(例如,可以通过 Select、Omit 排除某些字段),如果不相等,则返回 true,并更新记录

  1. func (u *User) BeforeUpdate(tx *gorm.DB) (err error) {
  2. // 如果 role 字段有变更
  3. if tx.Statement.Changed("Role") {
  4. return errors.New("role not allowed to change")
  5. }
  6. if tx.Statement.Changed("Name", "Admin") { // 如果 Name 或 Role 字段有变更
  7. tx.Statement.SetColumn("Age", 18)
  8. }
  9. // 如果任意字段有变更
  10. if tx.Statement.Changed() {
  11. tx.Statement.SetColumn("RefreshedAt", time.Now())
  12. }
  13. return nil
  14. }
  15. db.Model(&User{ID: 1, Name: "jinzhu"}).Updates(map[string]interface{"name": "jinzhu2"})
  16. // Changed("Name") => true
  17. db.Model(&User{ID: 1, Name: "jinzhu"}).Updates(map[string]interface{"name": "jinzhu"})
  18. // Changed("Name") => false, 因为 `Name` 没有变更
  19. db.Model(&User{ID: 1, Name: "jinzhu"}).Select("Admin").Updates(map[string]interface{
  20. "name": "jinzhu2", "admin": false,
  21. })
  22. // Changed("Name") => false, 因为 `Name` 没有被 Select 选中并更新
  23. db.Model(&User{ID: 1, Name: "jinzhu"}).Updates(User{Name: "jinzhu2"})
  24. // Changed("Name") => true
  25. db.Model(&User{ID: 1, Name: "jinzhu"}).Updates(User{Name: "jinzhu"})
  26. // Changed("Name") => false, 因为 `Name` 没有变更
  27. db.Model(&User{ID: 1, Name: "jinzhu"}).Select("Admin").Updates(User{Name: "jinzhu2"})
  28. // Changed("Name") => false, 因为 `Name` 没有被 Select 选中并更新

在更新时修改值

若要在 Before 钩子中改变要更新的值,如果它是一个完整的更新,可以使用 Save;否则,应该使用 scope.SetColumn ,例如:

  1. func (user *User) BeforeSave(scope *gorm.Scope) (err error) {
  2. if pw, err := bcrypt.GenerateFromPassword(user.Password, 0); err == nil {
  3. scope.SetColumn("EncryptedPassword", pw)
  4. }
  5. }
  6. db.Model(&user).Update("Name", "jinzhu")