Coder Social home page Coder Social logo

int turns float64 after decode about jwtauth HOT 1 CLOSED

go-chi avatar go-chi commented on August 15, 2024
int turns float64 after decode

from jwtauth.

Comments (1)

VojtechVitek avatar VojtechVitek commented on August 15, 2024 1

This is expected per Go's JSON marshaller. https://pkg.go.dev/encoding/json#Decoder.UseNumber

I'd suggest to use a strongly typed struct for your data (instead of map[string]interface{}), where the unmarshaller would know what type of the field you actually expect.

But, the safest option is to render all IDs as strings in the JSON payload, since JSON (JavaScript) can't handle big integers. We ran into some problems with int64 IDs loosing precision in the JavaScript application, cause JavaScript's float couldn't handle it. The safest solution was to switch to strings (for IDs) everywhere.

type MyPayload struct{
  ID int64 `json:"id,string"`
}

from jwtauth.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.