[]TypeScript Json 数据解析

这是我的Json文件内容
{
"name":"zzy"
}

第一种方式
private on2DComplete(): void {
Laya.loader.load("zxc.json", Laya.Handler.create(this,this. onLoadConfigComplete),null,Laya.Loader.JSON);
}
wayPoints:JSON;
private onLoadConfigComplete(): void {
this.wayPoints = Laya.loader.getRes("zxc.json") as JSON;
console.log(this.wayPoints.name); //这里会报name 不存在
}

第二种方式

Laya.loader.load("zxc.json", Laya.Handler.create(this,function(){
this.wayPoints = Laya.loader.getRes("zxc.json") as JSON;
console.log(this.wayPoints.name);
}),null,Laya.Loader.JSON); 使用匿名函数的时候就不报错

我该怎么循环Json文件内容
我是要在其他类里面访问本类解析出来的Json内容,该怎么做
已邀请:

qian

赞同来自:

在本例定义一个派发事件 然后去其他类监听

 

要回复问题请先

商务合作
商务合作