doutuo7126 2018-08-23 15:08
浏览 90

golang json无法正确解析带有嵌入式结构标签的字段[关闭]

package main

import (
    "encoding/json"
    "fmt"
)

type InnerData struct {
    M int64 `josn:"m"`
    N int64 `json:"n"`
}

//JSONData is a json data example
type JSONData struct {
    Hello string    `json:"hello"`
    Data  InnerData `json:"data"`
}

func main() {
    v := JSONData{Hello: "world", Data: InnerData{N: 100000, M: 123456}}
    mashaled, err := json.Marshal(&v)
    if err != nil {
        fmt.Println(err)
        return
    }
    fmt.Println(string(mashaled))
}

Noted the field M in InnerData has a tag m, so the expected result is :{"hello":"world","data":{"m":123456,"n":100000}}. While I have

{"hello":"world","data":{"M":123456,"n":100000}}

Does anyone know how to fix the problem, or where am I wrong?

  • 写回答

2条回答 默认 最新

  • doubijiao2094 2018-08-23 15:11
    关注

    You have typos in your code:

    In your InnerData, you put josn instead of json.

    Fix those typos and try again.

    评论

报告相同问题?

悬赏问题

  • ¥15 mmocr的训练错误,结果全为0
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀