Giter VIP home page Giter VIP logo

Comments (3)

minhajuddin avatar minhajuddin commented on August 14, 2024 1

For future searchers, we've done this using a custom module which loops through the data and encodes it using Jason: https://github.com/honeybadger-io/honeybadger-elixir/blob/master/lib/honeybadger/json.ex

from jason.

nihalgonsalves avatar nihalgonsalves commented on August 14, 2024

I was thinking, maybe a defimpl could help:

defimpl Jason.Encoder, for: [Map] do
  def encode(%_{} = struct, opts) do
    # pipe through Map.from_struct/1 before passing onto the default implementation
    # or recurse back to the next clause of this function
  end
  def encode(map, opts) do
    # pass on to default implementation
  end
end

I haven't tested this, but this should make it possible without implementing a deep Map.from_struct/1 like discussed in the linked issue.

from jason.

michalmuskala avatar michalmuskala commented on August 14, 2024

Jason does not define a way to encode arbitrary structs - they always need to be explicitly encoded by either manually encoding to a map (for example by using Map.from_struct) or by deriving the Jason.Encoder protocol. In general, there are many more types that cannot be just encoded to JSON, so tools shouldn't assume they can throw anything at the JSON encoder - some examples are tuples, bitstrings (that are not binaries), pids, ports, references and even binaries that are not UTF-8 encoded. I don't think it's correct for a tool to just try to encode arbitrary data to JSON by passing it to the encoder. If the tool does not want to require users pass JSON-encodable data to it, to should do some pruning and sanitising before encoding.

from jason.

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.