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 fluent的在模拟压强时使用希望得到一些建议
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用
  • ¥15 Web.config连不上数据库
  • ¥15 我想付费需要AKM公司DSP开发资料及相关开发。
  • ¥15 怎么配置广告联盟瀑布流
  • ¥15 Rstudio 保存代码闪退