Coder Social home page Coder Social logo

Remove $type field about fullserializer HOT 4 CLOSED

jacobdufault avatar jacobdufault commented on August 11, 2024
Remove $type field

from fullserializer.

Comments (4)

jacobdufault avatar jacobdufault commented on August 11, 2024

The $type field is emitted during serialization when there will not be enough context to fully recover the object graph during serialization (specifically, the type of object that the JSON maps back to).

If you remove $type, then deserialization will not work.

I'll look into adding a config to allow FS to act more like a JSON dumper, which sounds to be more like what you want (noticing some of the other issues you created).

from fullserializer.

NVentimiglia avatar NVentimiglia commented on August 11, 2024

Gotcha. Is this an issue if I pass a specific type along with the json ?

See my API wrapper :
https://github.com/NVentimiglia/Unity3d-Databinding-Mvvm-Mvc/blob/master/Foundation%20Databinding/Assets/Plugins/JsonSerializer.cs

(Am I to understand that FS actually can detect my object? TIL, cool) ?

In my scenario I am communicating with a server side api. It fails if my json contains illegal properties ($Type). The ability to remove properties post-deserialization is good enough for me.

from fullserializer.

jacobdufault avatar jacobdufault commented on August 11, 2024

I looked into adding a mode to prevent deserialization metadata from being added (like $type), but it mucks around with the logic a bit too much (and completely breaks serialization in certain scenarios, ie, when there is a cyclic object graph).

I've included a post-processor that removes the annotations in fsSerializer. Here is an example of how to use it:

void DoSerialize<T>(T obj) {
    fsData data;
    Serializer.Serialize(obj, out data).AssertSuccessWithoutWarnings();
    fsSerializer.StripDeserializationMetadata(ref data);
}

from fullserializer.

NVentimiglia avatar NVentimiglia commented on August 11, 2024

I can work with that.

from fullserializer.

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.