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

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


偶然的你
浏览 58回答 1
1回答

慕运维8079593

按如下方式编辑您的数据结构,type Data struct {    UserRoles map[string][]string `json:"user_roles,omitempty"`}如果您使用的是 uuid 的软件包,则还可以使用 uuid 类型作为地图的键类型,例如 https://github.com/google/uuid。但是请注意,这样,如果您在特定用户的json对象中有多个条目(具有相同的uuid),则只会提取一个条目。user_roles
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go