douwojiao5919 2017-04-29 23:09
浏览 514
已采纳

当我们用另一个结构包装时,Gorm golang sql.NullInt64无法正常工作

User can be deleted by another user. In that case,

type User struct {
    gorm.Model
    Email string `gorm:"type:varchar(100)"`
    DeletedBy     sql.NullInt64
}

DeletedBy will be null when we create a new user. So I used sql.NullInt64 instead of int64. But I cannot convert to JSON.

{ "Email": "xxxxx", "DeletedBy": {"Int64":2,"Valid":true} }

For that, I tried https://gist.github.com/smagch/bc34f861df65c8ea2e90 But Gorm send query condition value as "[{2, true}]"

  • 写回答

1条回答 默认 最新

  • dongseshu0698 2017-04-29 23:33
    关注

    In Go when you declare a type as an alias of another type, the new type does not get to keep the other type's methods. So here:

    type NullInt64 sql.NullInt64
    

    your new NullInt64 type has the same structure and memory layout as sql.NullInt64 but it does not have its methods, namely the Scan and Value methods required for it to work the way you want.

    Instead what you can do is to embed the sql.NullInt64 and you should be good to go.

    type NullInt64 struct {
        sql.NullInt64
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?