2021
05-25
05-25
gorm update传入struct对象,零值字段不更新的解决方案
使用gorm的update接口,出现如果字段为零值则不会生成字段的更新语句//Updateupdateattributeswithcallbacks,refer:https://jinzhu.github.io/gorm/crud.html#update//WARNINGwhenupdatewithstruct,GORMwillnotupdatefieldsthatwithzerovaluefunc(s*DB)Update(attrs...interface{})*DB{returns.Updates(toSearchableMap(attrs...),true)}如:typeAAstruct{IDint`gorm:"prim...
继续阅读 >