fromJSON是Yuka js库中一个从JSON格式数据创建实体的方法。
entity.fromJSON( jsonData );
该方法返回当前实体。
// 定义实体
class Person {
constructor( name, age ) {
this.name = name;
this.age = age;
}
}
// 创建JSON格式数据
const jsonData = '{ "name": "Bob", "age": 30 }';
// 使用fromJSON方法将JSON数据转换成Person实体
const person = new Person().fromJSON( jsonData );
console.log( person );
// 输出结果: Person { name: 'Bob', age: 30 }