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

json_name field option not working #248

Closed
junghoahnsc opened this issue Nov 3, 2016 · 4 comments
Closed

json_name field option not working #248

junghoahnsc opened this issue Nov 3, 2016 · 4 comments

Comments

@junghoahnsc
Copy link

Hello,

I'm using 'json_name' field option, but it doesn't work.

My proto is

message GeoCoordinate {
  double latitude = 1 [ json_name = "lat" ];
  double longitude = 2 [ json_name = "long" ];
}

But in Go,

a := GeoCoordinate{}
a.Latitude = 1.2

b, _ := json.Marshal(a)
fmt.Printf("a=%s\n", string(b))

The output was

a={"latitude":1.2}

Thanks,

@dsymonds
Copy link
Contributor

dsymonds commented Nov 3, 2016

You need to use the jsonpb package instead of the encoding/json package from the standard library.

@junghoahnsc
Copy link
Author

Oh, I see. It works.
It might be better to mention on this in https://developers.google.com/protocol-buffers/docs/proto3#json?

@bcmills
Copy link
Contributor

bcmills commented Nov 17, 2016

Arguably the best fix would be to remove the distinction between jsonpb and json encoding (per #256). Then there would be nothing unusual to document.

@cybrcodr
Copy link
Contributor

Closing this issue as it is resolvable via jsonpb. Discussion for using plain json encoding is at #256.

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

4 participants