大约有 15 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0046 秒)
...url){ this.onLoaded(null); return; } 而type 是 atlas __proto.onLoaded=function(data){ //add by yeyq, 检查是否正在下载,避免网页reload this.event("progress",0); var t...
来源: Laya_社区 发布时间: 20200427
...= {}; } else { msg = msg || {}; } route = route || msg.route; if(!route) { return; } this.reqId++; if(this.reqId>127){ this.reqId = 1; } var reqId = this.reqId; console.log("request"+msg); if(Pomelo.DEBUG){ console.group("REQUEST:"); console.info("Route:",route); console.log("Id:",reqId); console...
来源: Laya_社区 发布时间: 20180119
...]/, "");//替换一个看不见的特殊字符 return JSON.parse(data); } 但是这个方法也只是暂时的,这个也不知道是引擎的bug还是微信的bug 2018-01-04 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...
来源: Laya_社区 发布时间: 20180104
...icPrefix = (url:string) :string => { if (staticHash[`images/${url}`]) { return staticHash[`images/${url}`] } return `images/${url}` }然后资源导出的时候使用gulp生成文件hash 这样增量更新方式比整个替换文件夹要来的舒服const gulp = require('gulp') const hash = requi...
来源: Laya_社区 发布时间: 20180412
...Location(err, pos, curSource, id); err.id = id; err.hook = 'transform'; // return pluginContext.error(err); },该方法虽然可以解决 tslib 找不到的问题,并且编译后输出的文件可以正常运行,但是也屏蔽了其他错误,如果代码中有其他错误,最终输出的文...
来源: Laya_社区 发布时间: 20201223
...String { if (url.indexOf(".fnt") != -1 || url.indexOf("xxx.json") != -1) { return "utf8"; } else if (type == "arraybuffer") { return ""; } return "ascii"; } 2018-06-21 1 1 分享 微博 QZONE 微信 熊猫大侠 赞同来自: 好像中文有问题 英文没问题 2018-01-08 0 1 分享 微博 QZON...
来源: Laya_社区 发布时间: 20180108
...ter.getUrlEncode=function(url,type){ if(url.indexOf(".fnt")!=-1) return "utf8"; else if(type=="arraybuffer") return ""; return "utf8"; // return "ascii"; } 现在Json转ASCII是有问题,但如果把这个函数重写,改为return utf8...
来源: Laya_社区 发布时间: 20180531
...(MiniAdpter,'laya.wx.mini.MiniAdpter'); MiniAdpter.getJson=function(data){ return JSON.parse(data); } 这里json解析报错,,麻烦看一下是什么问题,,, 附件里是个demo工程,可以重现的,, 1111.rar 3D模型fbx.rar 附件 : --> 2018-09-20 添加评论 免费帖 --> ...
来源: Laya_社区 发布时间: 20180920
...ength; i < sz; i++) { if (url.indexOf(MiniAdpter.nativefiles[i]) != -1) return true; } return false; } static getFileInfo(fileUrl) { var fileNativePath = fileUrl; var fileObj = MiniFileMgr.fakeObj[fileNativePath]; if (fileObj == null) return null; else return fileObj; return null; } static read(f...
来源: Laya_社区 发布时间: 20200103
... str += String.fromCharCode(arr[i]); } return toType === 'json' ? JSON.parse(decodeURIComponent(escape(str))) : decodeURIComponent(escape(str)); } //转换成byte function fromCharCode(pakoData,toType = 'json'){ let converted = [], uintArray = new Uint16Array...
来源: Laya_社区 发布时间: 20191211