Existe-t-il un moyen de sérialiser/désérialiser JSON des objets TypeScript afin de ne pas perdre les informations de type? JSON.parse(JSON.stringify)
simple a trop de mises en garde.
Ou je devrais utiliser des solutions adhoc?
Utilisez les interfaces pour obtenir des types forts:
// Creating
var foo:any = {};
foo.x = 3;
foo.y='123';
var jsonString = JSON.stringify(foo);
alert(jsonString);
// Reading
interface Bar{
x:number;
y?:string;
}
var baz:Bar = JSON.parse(jsonString);
alert(baz.y);
Et utilisez l'assertion de type "<>" si vous en avez besoin.
Le AQuirky answer fonctionne pour moi . Vous pouvez avoir quelques problèmes avec la méthode Object.assign. J'ai dû modifier mon tsconfig.json pour inclure:
"compilerOptions": {
...
"lib": ["es2015"],
...
}
Je pense qu'une meilleure façon de gérer cela consiste à utiliser Object.assign (qui nécessite toutefois ECMAScript 2015).
Donné un cours
class Pet {
name: string;
age: number;
constructor(name?: string, age?: number) {
this.name = name;
this.age = age;
}
getDescription(): string {
return "My pet " + this.name + " is " + this.age + " years old.";
}
static fromJSON(d: Object): Pet {
return Object.assign(new Pet(), d);
}
}
Sérialiser et désérialiser comme ceci ...
var p0 = new Pet("Fido", 5);
var s = JSON.stringify(p0);
var p1 = Pet.fromJSON(JSON.parse(s));
console.log(p1.getDescription());
Pour prendre cet exemple au prochain niveau, considérons les objets imbriqués ...
class Type {
kind: string;
breed: string;
constructor(kind?: string, breed?: string) {
this.kind = kind;
this.breed = breed;
}
static fromJSON(d: Object) {
return Object.assign(new Type(), d);
}
}
class Pet {
name: string;
age: number;
type: Type;
constructor(name?: string, age?: number) {
this.name = name;
this.age = age;
}
getDescription(): string {
return "My pet " + this.name + " is " + this.age + " years old.";
}
getFullDescription(): string {
return "My " + this.type.kind + ", a " + this.type.breed + ", is " + this.age + " years old.";
}
static fromJSON(d: Object): Pet {
var o = Object.assign(new Pet(), d);
o.type = Type.fromJSON(o['type']);
return o;
}
}
Sérialiser et désérialiser comme ceci ...
var q0 = new Pet("Fido", 5);
q0.type = new Type("dog", "Pomeranian");
var t = JSON.stringify(q0);
var q1 = Pet.fromJSON(JSON.parse(t));
console.log(q1.getFullDescription());
Donc, contrairement à l'utilisation d'une interface, cette approche préserve les méthodes.