当前位置: 首页 > 工具软件 > Go GORM > 使用案例 >

golang gorm 更新零值字段的方法

向弘懿
2023-12-01

使用golang的gorm更新0值的字段,总是失败。
按照官方文档,如果字段值中有0值,不能再使用 struct,而需要使用 map[string]interface{},但实际上还是失败,比对了很久,才发现是在Updates方法不能传入map的指针,必须是map的值。

错误的写法

values := map[string]interface{}{
	"status":0,
	"from": hash,
}

err = GetDB().Model(&models.Task{Id: taskId}).Updates(&values).Err

正确的写法

err = GetDB().Model(&models.Task{Id: taskId}).Updates(values).Err

注意,values 传入的是值,如果传入指针,就不执行。
官方文档:https://gorm.io/docs/update.html

 类似资料: