dougu3290 2019-08-05 05:27
浏览 145
已采纳

如何正确将json字符串转换为对象

I have a Beam pipeline written in Go and I'd like to transform this input:

{"name": "Bob", "age": 32}

to a valid "object".

The go sdk has this function in the encoding package :

// UnmarshalJSON sets the state of this instance from the passed in JSON.
func (w *EncodedType) UnmarshalJSON(buf []byte) error {
    var s string
    if err := json.Unmarshal(buf, &s); err != nil {
        return err
    }
    t, err := graphx.DecodeType(s)
    if err != nil {
        return err
    }
    w.T = t
    return nil
}

But I don't understand how to use it as a step of my pipeline.

  • 写回答

1条回答 默认 最新

  • dongqie5529 2019-08-05 16:09
    关注

    You're sort of on the right track. Go doesn't have "objects" in the normal sense of the word as it pertains to programming. You would use a struct like this:

        type User struct {
            Name    string `json:"name"`
            Age     int    `json:"age"`
        }
    

    You would use that to unmarshal into that structure like this:

        var myUser User
        err := json.Unmarshal([]byte(`{"name": "Bob", "age": 32}`), &myUser)
        if err != nil {
            fmt.Println(err)
            return
        }
        fmt.Println(myUser.Name, myUser.Age)
    

    Here is a playground example: https://play.golang.org/p/_uHZ9Q_j-p1

    More information: https://blog.golang.org/json-and-go

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 运筹学中在线排序的时间在线排序的在线LPT算法
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 lammps拉伸应力应变曲线分析
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试,帮帮忙吧