Can be used to create simple custom propSchema. Multiple things can be done inside of a custom
propSchema, like deserializing and serializing other (polymorphic) objects, skipping the
serialization of something or checking the context of the obj being (de)serialized.
The custom function takes two parameters, the serializer function and the deserializer
function.
The serializer function has the signature:
(value, key, obj) => void
When serializing the object {a: 1} the serializer function will be called with
serializer(1, 'a', {a: 1}).
The deserializer function has the following signature for synchronous processing
(value, context, oldValue) => void
For asynchronous processing the function expects the following signature
(value, context, oldValue, callback) => void
When deserializing the object {b: 2} the deserializer function will be called with
deserializer(2, contextObj)
(contextObj reference).
function that takes a json value and turns it into a model value.
It also takes context argument, which can allow you to deserialize based on the context of other
parameters.
Can be used to create simple custom propSchema. Multiple things can be done inside of a custom propSchema, like deserializing and serializing other (polymorphic) objects, skipping the serialization of something or checking the context of the obj being (de)serialized.
The
custom
function takes two parameters, theserializer
function and thedeserializer
function.The
serializer
function has the signature:(value, key, obj) => void
When serializing the object
{a: 1}
theserializer
function will be called withserializer(1, 'a', {a: 1})
.The
deserializer
function has the following signature for synchronous processing(value, context, oldValue) => void
For asynchronous processing the function expects the following signature
(value, context, oldValue, callback) => void
When deserializing the object
{b: 2}
thedeserializer
function will be called withdeserializer(2, contextObj)
(contextObj reference).Example