golang 和 json 字符串互转的问题

2020-05-14  本文已影响0人  pubalabala

1. 说明

仅做了粗略的测试,不保证严谨性,但足以体现效果。

2. 测试

type T struct {
    Field1 string `json:"tEst1"` // test json tag
    FiEld2 string `bson:"test2"` // test non-json tag
    Field3 string `json:"teSt3"` // test ignore json tag
    Field4 string // test mismatched field
    field5 string // test not export
}

testJson := "{\"test1\": \"test json tag\", \"fIeLd2\": \"test non-json tag and ignore case\", \"Field3\":\"test ignore json tag\", \"Field\":\"test mismatched field\", \"field5\":\"test not export\"}"

bytes := []byte(testJson)
testT := T{}
err := json.Unmarshal(bytes, &testT)
if err != nil {
    fmt.Println("err:", err)
}
// 打印输出,有 json tag 的按照 json tag 比较,无 json tag 的按照字段名比较,比较不区分大小写,为导出字段和未匹配通过的字段忽略
fmt.Printf("%++v\n", testT) // {Field1:test json tag FiEld2:test non-json tag and ignore case Field3: Field4: field5:}

testT = T{
    Field1: "test field use tag",
    FiEld2: "test non-json tag",
    Field3: "test field use tag",
    Field4: "test no tag",
    field5: "test not export",
}
str, err := json.Marshal(testT)
// 输出转换的 json 字符串无未导出字段,无 tag 和非 json tag 字段使用字段名
fmt.Println(string(str)) // {"tEst1":"test field use tag","FiEld2":"test non-json tag","teSt3":"test field use tag","Field4":"test no tag"}

3. 结论

上一篇下一篇

猜你喜欢

热点阅读