gorm update无法更新零值,字段值无法改为0的解决办法(””好像有一样的问题,但没测试)
尝试了好几种方法,只有这种有效 也方便
将字段类型变为指针即可解决
1 | type Users struct { |
//修改时
1 | func EditUserProfileById(uid int64, nickname string, nicknameUpdated int, birthday, birthdayUpdatedAt string, gender int) bool { |
gorm update无法更新零值,字段值无法改为0的解决办法(””好像有一样的问题,但没测试)
尝试了好几种方法,只有这种有效 也方便
将字段类型变为指针即可解决
1 | type Users struct { |
//修改时
1 | func EditUserProfileById(uid int64, nickname string, nicknameUpdated int, birthday, birthdayUpdatedAt string, gender int) bool { |