iancoleman / orderedmap

orderedmap is a golang map where the keys keep the order that they're added. It can be de/serialized from/to JSON. It's based closely on the python collections.OrderedDict.
MIT License
356 stars 55 forks source link

Use json.Number to prevent precision loss #36

Open guox33 opened 1 year ago

guox33 commented 1 year ago

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 }