We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go: go1.16 windows/amd64 go-json: master (v0.4.12-0.20210411072911-c74c2078ead8)
package test import ( "encoding/json" "strconv" "testing" gojson "github.com/goccy/go-json" ) type CustomInt int func (i CustomInt) MarshalJSON() ([]byte, error) { return []byte(strconv.Itoa(int(i))), nil } type Foo struct { Bar CustomInt `json:"b,omitempty"` } func TestOmitempty(t *testing.T) { foo := &Foo{} data, _ := json.Marshal(foo) t.Log(string(data)) // {} data, _ = gojson.Marshal(foo) t.Log(string(data)) // {"b":0} }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
go: go1.16 windows/amd64
go-json: master (v0.4.12-0.20210411072911-c74c2078ead8)
The text was updated successfully, but these errors were encountered: