使用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