douyan6871 2019-01-12 16:42
浏览 125
已采纳

如何将Postgresql JSON类型转换为Golang本机?

I am trying to convert a postgres column that is of type json to golang json object.

type MY_JSON struct {
  MY_ID string `json:"my_id"`
  MY_INFO []MY_INNER_JSON `json:"my_info"`
}

type MY_INNER_JSON struct {
    SOME_ID   string `json:"some_id"`
    SOME_NUM  int64 `json:"some_num"`
    SOME_OPTIONAL  string `json:"some_optional,omitempty"`
}

rows, err := db.Query("SELECT my_json FROM my_json_table LIMIT 1;")

for rows.Next() {
    var mycolumn MY_JSON
    err = rows.Scan(&mycolumn)
    fmt.Println(mycolumn)
}

This is what the json looks like

{
    "my_id": "this is my_id",
    "my_info": [
        {
            "some_id": "some_id",
            "some_num": 123
        },
        {
            "some_id": "some_id",
            "some_num": 123,
            "some_optional": "sometimes more"
        },
    ]
}

I am getting panic from golang during runtime.

Can someone point me a direction and tell me where I am doing wrong?

  • 写回答

1条回答 默认 最新

  • dpt62283 2019-01-12 17:02
    关注

    By implementing the sql.Scanner interface on MY_JSON, your code should work as is. To do this, you need only to add the Scan method on the MY_JSON type (with pointer receiver).

    func (m *MY_JSON) Scan(src interface{}) error {
        bs, ok := src.([]byte)
        if !ok {
            return errors.New("not a []byte")
        }
        return json.Unmarshal(bs, m)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵