我有一个后格雷SQL表,它有一个JSONB文件。该表可以通过以下方式创建
create table mytable
(
id uuid primary key default gen_random_uuid(),
data jsonb not null,
);
insert into mytable (data)
values ('{
"user_roles": {
"0x101": [
"admin"
],
"0x102": [
"employee",
"customer"
]
}
}
'::json);
在上面的例子中,我使用“0x101”,“0x102”来呈现两个UID。实际上,它有更多的UID。
我正在使用杰克/ pgx来读取该 JSONB 字段。
这是我的代码
import (
"context"
"fmt"
"github.com/jackc/pgx/v4/pgxpool"
)
type Data struct {
UserRoles struct {
UID []string `json:"uid,omitempty"`
// ^ Above does not work because there is no fixed field called "uid".
// Instead they are "0x101", "0x102", ...
} `json:"user_roles,omitempty"`
}
type MyTable struct {
ID string
Data Data
}
pg, err := pgxpool.Connect(context.Background(), databaseURL)
sql := "SELECT data FROM mytable"
myTable := new(MyTable)
err = pg.QueryRow(context.Background(), sql).Scan(&myTable.Data)
fmt.Printf("%v", myTable.Data)
正如内部的注释中提到的,上面的代码不起作用。
如何在类型结构中呈现动态键或如何返回所有JSONB字段数据?谢谢!
慕运维8079593
相关分类