当前位置:   article > 正文

json标签_ejson标签

ejson标签

json标签

  • json:"-" // 表示不进行序列化,忽略

  • json:"name,omitempty"//加上omitempty,可以在序列化的时候忽略0值或者空值;若要在被嵌套结构体整体为空时使其在序列化结果中被忽略,不仅要在被嵌套结构体字段后加json:“name,omitempty”,还要将其改为结构体指针

  • json:",inline"通常作用于内嵌的结构体类型type

    package main
    
    import (
        "encoding/json"
        "fmt"
    )
    type T1 struct {
        FieldInt     int    `json:"field_int"`
        FieldIgnore  int    `json:"-"`                       //忽略
        FieldBooleab bool   `json:"field_boolean,string"`    //不同类型
        FieldString1 string `json:"field_string1,omitempty"` //忽略空值,当时复合结构时为要为指针类型
        FieldString2 string `json:"field_string2,omitempty"`
    }
    type T2 struct {
        T1 `json:",inline"`  //表示内嵌与T1输出一致
    }
    
    func main() {
        val1 := T1{
            FieldInt:     11,
            FieldIgnore:  11,
            FieldBooleab: true,
            FieldString2: "no empty",
        }
        bty1, _ := json.Marshal(val1)
        fmt.Printf("%v\r\n", string(bty1))
    
        val2 := T2{
            val1,
        }
        bty2, _ := json.Marshal(val2)
        fmt.Printf("%v\r\n", string(bty2))
    }
    
    // output
    // {"field_int":11,"field_boolean":"true","field_string2":"no empty"}
    // {"field_int":11,"field_boolean":"true","field_string2":"no empty"}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/157994
推荐阅读
相关标签
  

闽ICP备14008679号