Open
Description
What version of Go are you using (go version
)?
$ go version go version go1.11.2 darwin/amd64
Does this issue reproduce with the latest release?
Yes.
What operating system and processor architecture are you using (go env
)?
go env
Output
$ go env
GOARCH="amd64"
GOOS="darwin"
What did you do?
https://play.golang.org/p/NlRBFTZHFYd
func main() {
type Foo struct {
ID [16]byte `json:",omitempty"`
}
var f Foo
j, _ := json.Marshal(f)
fmt.Println(string(j))
}
What did you expect to see?
{}
What did you see instead?
{"ID":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
This is caused by isEmptyValue
inside encoding/json
checking to see if the length of the array is 0. For people actually using an array (and not a slice), it is unlikely that they would ever use an array of zero length. It is likely, however, that they might want to omit the result if all of the values in the array are empty. For example, if a user is using [16]byte
to represent a UUID, they might want to omit encoding it if it is all zeroes. This was brought up in #11939, specifically this comment. It would be nice if we could do this generically for arrays with values we can determine are empty.
Activity