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)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮