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

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

1. HttpRequest有一定几率触发error事件 Status:0 [ 100%]

HttpRequest有一定几率触发error事件 Status:0 在微信开发者工具中,调用 request.send(url + method, data, "post", "json", ["Content-Type","application/json","Authorization", "Bearer " + PlayerModel.Instance.token]);   大部分时候正常  但有20%的几率会触发error事件...

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

2. HttpRequest在网页上和APP上表现不一致 [ 96%]

HttpRequest在网页上和APP上表现不一致 let url = "http://10.1.1.123:9090/pgame/s ... 3B%3B Laya.timer.loop(30000, this, ()=>{     let hr = new Laya.HttpRequest();     hr.http.timeout = 3000;     hr.http.ontimeout = function(){console.log("http timeout test: timeout")};     hr.on...

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

3. Laya.HttpRequest 没有调用回调方法? [ 85%]

Laya.HttpRequest 没有调用回调方法? //初始化引擎 Laya.init(1136,640); var xhr = new Laya.HttpRequest(); xhr.http.timeout = 10000;//设置超时时间; xhr.once(Event.COMPLETE,this,completeHandler); xhr.once(Event.ERROR,this,errorHandler); xhr.on(Event.PROGRESS,this,processHandler); ...

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

4. 排坑:Laya.HttpRequest()无效 [ 85%]

排坑:Laya.HttpRequest()无效 写了一个测试程序,简单获取网页源码并打印到控制台。然而,什么也获取不到 下面是代码 console.log("开始测试"); var xhr = new Laya.HttpRequest(); xhr.http.timeout = 10000;//设置超时时间; xhr.once(Event.COMPLETE, this, co...

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

5. 打包成APK后,POST请求会先去Download请求的地址 [ 85%]

...求会先去Download请求的地址 项目打包成app后运行,使用XMLHttpRequest发出post请求后,log中出现了Download 我post的地址。然后有时候会卡住,大概5秒后会出现Download end:200的log,这之后才会真正把post请求发出去。有时候Download会直接超...

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

6. HttpRequest感觉没有发成功 [ 85%]

HttpRequest感觉没有发成功 官网复制过来的代码,加了一些控制台输出,但是没有看到请求或者输出。是不是我哪里用得不对?代码如下 //初始化引擎 Laya.init(1136,640); var xhr = new Laya.HttpRequest(); xhr.http.timeout = 10000;//设置超时时间;...

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

7. xhr的on和once什么区别,官网例子 [ 76%]

xhr的on和once什么区别,官网例子 Laya.init(1136, 640); var xhr:HttpRequest = new HttpRequest(); xhr.http.timeout = 10000;//设置超时时间; xhr.once(Event.COMPLETE,this,completeHandler); xhr.once(Event.ERROR,this,errorHandler); xhr.on(Event.PROGRESS,this,processHandler); 2017-10-17 ...

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

8. 官方的示例贴上来,怎么没反映啊 [ 67%]

...nction (_super) { function JiHuo() { JiHuo.super(this); var xhr = new Laya.HttpRequest(); xhr.http.timeout = 10000;//设置超时时间; xhr.once(Event.COMPLETE, this, completeHandler); xhr.once(Event.ERROR, this, errorHandler); xhr.on(Event.PROGRESS, this, processHandler); xhr.send("https://api.w...

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

9. http在手机端上请求返回404 [ 64%]

...H5游戏,退到后台,等几秒返回音乐音效全无 TypeScript下HttpRequest发送Post请求有Bug? 1.7.15 小游戏3d 发布后在手机预览显示异常 我刚开始使用layabox,发布了一个h5,但是手机上应该怎么打开这个网页呢 打包android版本 点击返回键会...

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

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

...gin = function (){ console.log ('按了登录按钮')  var xhr = new Laya.HttpRequest(); xhr.http.timeout = 10000;//设置超时时间; xhr.once(Event.COMPLETE,this,completeHandler); xhr.once(Event.ERROR,this,errorHandler); xhr.once(Event.PROGRESS,this,processHandler);  var sendData = {account:"...

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