オブジェクト p1 の JSON 文字列化された結果を解析して別のオブジェクト p2 に戻すと、2 番目のオブジェクトは最初のオブジェクトに関連付けられたデータを取得しますが、そのオブジェクトに対してネットワークを呼び出すことはできません。http://www.typescriptlang.org/Playground/を使用して、次のことを試しました。
class Person
{
constructor(public name: string, public age: number) {
}
Age() { return this.age; }
}
// Create a person
var p: Person = new Person("One", 1);
// Create a second person from the JSON representation
// of the first (NOTE: assert it is of type Person!)
var p2: Person = <Person>JSON.parse(JSON.stringify(p));
document.writeln("Start");
document.writeln(p.name); // OK: One
document.writeln(p.Age()); // OK: 1
document.writeln(p2.name); // OK: One
document.writeln(p2.age; // OK: 1
document.writeln(p2.Age()); // ERROR: no method Age() on Object
document.writeln("End");
JSON データを解析して適切な Person オブジェクトを取得するにはどうすればよいですか?