• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 1,565 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0058 秒)

201. ts如何获取客户端IP地址 [ 80%]

...SkyWalker // 获取IP地址 wx.request({ url: 'https://tianqiapi.com/ip/', data: { }, method: 'POST', header: { 'content-type': 'application/x-www-form-urlencoded' }, success: function (res) { console.log('IP地址: ' + res.data.ip); Test222.IP = res.data.ip; } }); 2020-01-06 1 0 分享 微博 QZONE...

来源: Laya_社区 发布时间: 20200106

202. Laya小程序加载ls失败 [ 80%]

...or。经过调试发现code.js中__proto.onAsynLoaded 方法里面var json=data[0]有问题,data本身是json字符串,data[0]为{,虽然将这里改了,但是加载还是有问题。 2018-09-27 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内...

来源: Laya_社区 发布时间: 20180927

203. 多线程worker(ActionScript-2D进阶篇(AS3)-游戏加载策略) [ 80%]

...象;它将包含于传递给 onmessage 处理函数的事件对象中的 data 字段内。你可以传递任意值或是经过[结构化拷贝](http://www.whatwg.org/specs/web-apps/current-work/multipage/common-dom-interfaces.html#transferable)算法处理过的 JavaScript 对象,即可以包含...

来源: Laya2.0_文档 发布时间: 20210715

204. 请教如何实现完美的LoopList?尝试了下总是有倒带的卡顿动作隐藏不掉 [ 80%]

...ue);                  this.WheelList.scrollBar.value=this.datas.length-1;                 // this.WheelList.tweenTo(this.datas.length,0);             }             else             {                 this.WheelList....

来源: Laya_社区 发布时间: 20201025

205. laya.resource.TextResource_API3.0 [ 80%]

...rarchy Resource TextResource Index Constructors constructor Properties _id data destroyedImmediately format lock name url uuid DEBUG Accessors cpuMemory destroyed gpuMemory id obsolute referenceCount cpuMemory gpuMemory Methods _addReference _clearReference _removeReference _setCPUMemory _setCreateU...

来源: Laya3.0_api 发布时间: 20231115

206. laya 2.6.0 加载image报错 [ 80%]

laya 2.6.0 加载image报错 加载IMAGE资源的时候,data为Texture2D类型,前两个判断没走,(data instanceof ArrayBuffer) 和 (!(data instanceof Texture2D))。导致tex为undefined,结果就无法继续加载了。。 LayaAir 2.6.0 的JS版本   ps: 加载的是FairyGu...

来源: Laya_社区 发布时间: 20200429

207. layaair.so 底层崩溃 [ 80%]

...>>>>>The network has changed D/AES: onEndOfErrorDumpThread: data_app_native_crash Time: 1533189587824 Flags: 0x3888bf46 PID: 7955 Foreground: Yes Build: OPPO/A83/A83:7.1.1/N6F26Q/1524206852:user/release-keys *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Build fingerp...

来源: Laya_社区 发布时间: 20180802

208. 最新版本IDE,如何获取http返回的json数据 [ 80%]

...his,errorHandler); xhr.once(Event.PROGRESS,this,processHandler);  var sendData = {account:"aaa",password:"bbb"} xhr.send("http://xxx/login", JSON.stringify(sendData), "post", "json", ["content-type","application/json"]);     function processHandler(data){ console.log (data) } function completeHa...

来源: Laya_社区 发布时间: 20180824

209. 微信小游戏,又是json编码的问题 [ 80%]

...改了下MiniLoader里的代码就可以了 public static function getJson(data:String):Object {                 data = data.replace(/[\ufeff]/, "");//替换一个看不见的特殊字符                 return JSON.parse(data);         } 但是这个方法也只是暂...

来源: Laya_社区 发布时间: 20180104

210. 关于laya无法缓存非图片、声音文件bug [ 80%]

...onMkdirCallBack 方法的定义:     static onMkdirCallBack(errorCode, data) { if (!errorCode) { MiniFileMgr.filesListObj = JSON.parse(data.data); MiniFileMgr.fakeObj = MiniFileMgr.filesListObj || {}; } else { MiniFileMgr.fakeObj = MiniFileMgr.filesListObj = {}; } MiniFileMgr.fs.readdir({ dirPat...

来源: Laya_社区 发布时间: 20200529