Skip to content
New issue

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

Marshal ignores omitempty struct tag on custom type #186

Closed
IncSW opened this issue Apr 11, 2021 · 0 comments
Closed

Marshal ignores omitempty struct tag on custom type #186

IncSW opened this issue Apr 11, 2021 · 0 comments

Comments

@IncSW
Copy link
Contributor

IncSW commented Apr 11, 2021

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}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant