Skip to content

Use json.Number to prevent precision loss #36

@guox33

Description

@guox33

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 }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions