首页 > 后端开发 > Golang > 正文

如何在 Go 中将 JSON 数据解组到具有专用子结构的自定义结构中?

Linda Hamilton
发布: 2024-11-06 14:27:02
原创
882 人浏览过

How to Unmarshal JSON Data into a Custom Struct with Specialized Substructures in Go?

将 JSON 数据解组到自定义结构中

在 Go 中,将 JSON 数据解组到结构中是一项常见任务。考虑以下 JSON 数据:

<code class="json">{
    "Asks": [[21, 1], [22, 1]],
    "Bids": [[20, 1], [19, 1]]
}</code>
登录后复制

我们可以定义一个结构体来表示此数据:

<code class="go">type Message struct {
    Asks [][]float64 `json:"Asks"`
    Bids [][]float64 `json:"Bids"`
}</code>
登录后复制

但是,如果我们想要进一步专门化数据结构,表示每个订单,该怎么办作为单独的结构:

<code class="go">type Message struct {
    Asks []Order `json:"Asks"`
    Bids []Order `json:"Bids"`
}

type Order struct {
    Price float64
    Volume float64
}</code>
登录后复制

使用 MarshalJSON 进行自定义解组

至为了实现这一点,我们可以在 Order 结构体上实现 json.Unmarshaler 接口:

<code class="go">type Order struct {
    Price float64
    Volume float64
}

func (o *Order) UnmarshalJSON(data []byte) error {
    var v [2]float64
    if err := json.Unmarshal(data, &v); err != nil {
        return err
    }
    o.Price = v[0]
    o.Volume = v[1]
    return nil
}</code>
登录后复制

此方法指示 Go 将 JSON 中的每个元素解码为 2 元素数组,并将值分配给 Price 和Order 结构体的 Volume 字段。

实现此方法后,我们现在可以将 JSON 数据解组到我们的自定义中struct:

<code class="go">jsonBlob := []byte(`{"Asks": [[21, 1], [22, 1]], "Bids": [[20, 1], [19, 1]]}`)
message := &Message{}
if err := json.Unmarshal(jsonBlob, message); err != nil {
    panic(err)
}</code>
登录后复制

现在,我们可以使用自定义 Order 结构体访问数据:

<code class="go">fmt.Println(message.Asks[0].Price)</code>
登录后复制

以上是如何在 Go 中将 JSON 数据解组到具有专用子结构的自定义结构中?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!