Go json.Marshal 函數の omit tag の擧動
code:go
package main
import (
"encoding/json"
"fmt"
)
type S struct {
S string
}
type A struct {
B1 string json:"b1"
B2 string json:"b2,omitempty"
B3 string json:"b3,omitzero"
C1 *string json:"c1"
C2 *string json:"c2,omitempty"
C3 *string json:"c3,omitzero"
D1 S json:"d1"
D2 S json:"d2,omitempty"
D3 S json:"d3,omitzero"
E1 *S json:"e1"
E2 *S json:"e2,omitempty"
E3 *S json:"e3,omitzero"
F1 []string json:"f1"
F2 []string json:"f2,omitempty"
F3 []string json:"f3,omitzero"
G1 *[]string json:"g1"
G2 *[]string json:"g2,omitempty"
G3 *[]string json:"g3,omitzero"
H1 []*string json:"h1"
H2 []*string json:"h2,omitempty"
H3 []*string json:"h3,omitzero"
}
func main() {
a := A{}
j, err := json.Marshal(a)
if err != nil {
fmt.Println(err)
}
fmt.Printf("%+v\n", a)
fmt.Printf("%s\n", j)
}
code:go
{B1: B2: B3: C1:<nil> C2:<nil> C3:<nil> D1:{S:} D2:{S:} D3:{S:} E1:<nil> E2:<nil> E3:<nil> F1:[] F2:[] F3:[] G1:<nil> G2:<nil> G3:<nil> H1:[] H2:[] H3:[]}
code:json
{"b1":"","c1":null,"d1":{"S":""},"d2":{"S":""},"e1":null,"f1":null,"g1":null,"h1":null}
omitzero