[]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内容,该怎么做
{
"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内容,该怎么做
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
qian
赞同来自: