如何在类型结构中呈现动态键?

How to present dynamic keys in a type struct?

我有一个 PostgreSQL table,它有一个 JSONB 归档。 table 可以由

创建
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)

正如里面的评论所说,上面的代码不起作用。

如何在类型结构中呈现动态键或如何return 所有 JSONB 字段数据?谢谢!

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

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

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

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