3 回答
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)
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)
- 3 回答
- 0 关注
- 283 浏览
添加回答
举报