我有一个 PostgreSQL 表,其中有一个 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。
我正在使用jackc/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 字段数据?谢谢!