为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用 GORM 在 Postgres 的 JSONB 字段中插入数据

如何使用 GORM 在 Postgres 的 JSONB 字段中插入数据

Go
慕码人2483693 2022-07-25 10:33:41
我有这样的模型模型.gotype yourTableName struct {   Name             string `gorm:"type:varchar(50)" json:"name"`   Email            string `gorm:"type:varchar(50)" json:"email"`   FieldNameOfJsonb JSONB  `gorm:"type:jsonb" json:"fieldnameofjsonb"`}array of object我想使用 GORM 在 postgres 中插入 FieldNameOfJsonb如下所示{    "name": " james",    "email": "james@gmail.com",    "FieldNameOfJsonb": [        {            "someField1": "value",            "someFiedl2": "somevalue",            },        {            "Field1": "value1",            "Fiedl2": "value2",        }    ],
查看完整描述

3 回答

?
梦里花落0921

TA贡献1772条经验 获得超6个赞

只需在 Model.go ( referenceLink )中添加以下代码



import (

    "errors"

    "database/sql/driver"

    "encoding/json"

)


// JSONB Interface for JSONB Field of yourTableName Table

type JSONB []interface{}


// Value Marshal

func (a JSONB) Value() (driver.Value, error) {

    return json.Marshal(a)

}


// Scan Unmarshal

func (a *JSONB) Scan(value interface{}) error {

    b, ok := value.([]byte)

    if !ok {

        return errors.New("type assertion to []byte failed")

    }

    return json.Unmarshal(b,&a)

}

-> Marshal , Unmarshal的参考链接


现在您可以使用插入数据DB.Create(&yourTableName)


查看完整回答
反对 回复 2022-07-25
?
婷婷同学_

TA贡献1844条经验 获得超8个赞

我在https://stackoverflow.com/a/71636216/13719636中回答了类似的问题。


在 Gorm 中使用 JSONB 的最简单方法是使用pgtype.JSONB.


Gorm 使用pgx它作为驱动程序,并且pgx具有名为 的包pgtype,其类型为pgtype.JSONB。


如果您已经pgx按照 Gorm 的指示安装,则不需要安装任何其他软件包。


此方法应该是最佳实践,因为它使用底层驱动程序并且不需要自定义代码。


type User struct {

    gorm.Model

    Data pgtype.JSONB `gorm:"type:jsonb;default:'[]';not null"`

}

从数据库中获取价值


u := User{}

db.find(&u)


var data []string


err := u.Data.AssignTo(&data)

if err != nil {

    t.Fatal(err)

}

将值设置为 DB


u := User{}


err := u.Data.Set([]string{"abc","def"})

if err != nil {

    return

}


db.Updates(&u)


查看完整回答
反对 回复 2022-07-25
?
慕慕森

TA贡献1856条经验 获得超17个赞

您可以使用gorm-jsonb包。



查看完整回答
反对 回复 2022-07-25
  • 3 回答
  • 0 关注
  • 283 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信