orderedmap icon indicating copy to clipboard operation
orderedmap copied to clipboard

Use json.Number to prevent precision loss

Open guox33 opened this issue 2 years ago • 0 comments

I tried to unmarshal my json string into an orderedmap, this is my string: "{\n \"IDs\": [\n 7236290603911250220\n ] \n}"

But I got the result: image

I check the source code, and find out that the func UnmarshalJSON of OrderedMap does not use json.Number when decoding string into values, which leads to the precision loss in this issue.

I think it's necessary to use json.Number like this: dec := json.NewDecoder(bytes.NewReader(b)) dec.UseNumber() err := dec.Decode(&o.values) if err != nil { return err }

guox33 avatar Aug 09 '23 09:08 guox33