-
-
Notifications
You must be signed in to change notification settings - Fork 53
Description
Is it possible to use this library to serialise a Date value to an ISO-8601 string?
for example, I want this:
class MyObject {
@serializable /* Need to specify the target here?*/
MyDate!: Date
}
const myObject = new MyObject();
myObject.MyDate = new Date();
const json = serialize(myObject);
console.log(json);To output this:
'{"MyDate":"2021-07-27T14:39:15.915Z"}'
And then I want to be able to do the reverse of this; deserialze this JSON into an instance of MyObject, with MyDate properly instantiated.
const myNewObject = deserialize(MyObject, json);
console.log(myNewObject.MyDate.ToISOString()); should output this:
2021-07-27T14:39:15.915Z
I've tried declaring the @serializable attribute with date() in the constructor, which outputs the date as epoch as per the docs.
I've tried declaring the @serializable attribute using primitive() in the constructor, which I think should be valid based on this:
Indicates that this field contains a primitive value (or Date) which should be serialized literally to JSON.
But this throws the error:
Exception has occurred: Error: [serializr] this value is not primitive: Tue Jul 27 2021 15:51:19 GMT+0100 (British Summer Time)
Any help with this would be appreciated.