0

我有一个 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 字段数据?谢谢!

4

1 回答 1

1

按如下方式编辑您的数据结构,

type Data struct {
    UserRoles map[string][]string `json:"user_roles,omitempty"`
}

如果您使用https://github.com/google/uuid之类的包作为 uuid,您也可以使用 uuid 类型作为地图的键类型。

但是请注意,如果您在特定用户的 json 对象中有多个条目user_roles(具有相同的 uuid),则这种方式只会获取一个。

于 2021-08-01T12:34:06.680 回答