[0]连续读取多个本地json文件
onAwake(): void {
console.log("读数据");
Laya.loader.load("Json/shopLevel.json", Laya.Handler.create(this, this.shopJsonLoaded), null, Laya.Loader.JSON);
Laya.loader.load("Json/menu.json", Laya.Handler.create(this, this.menuJsonLoaded), null, Laya.Loader.JSON);
}
//读取商店等级配置表
shopJsonLoaded( ) {
let json = Laya.loader.getRes("Json/shopLevel.json");
}
//读取菜单配置表
menuJsonLoaded( ) {
let menuJson = Laya.loader.getRes("Json/menu.json");
}
读取完成后,发现menuJson 得到的数据跟json得到的数据上一样的
[attach]29994[/attach]
没有找到相关结果
已邀请:
1 个回复
时光123
赞同来自: 若