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

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

1. native下HttpRequest设置超时无效 [ 100%]

native下HttpRequest设置超时无效 android原生,HttpRequest请求时设置超时: var httpRequest = new HttpRequest(); httpRequest.http.timeout = 3000; 在做http请求时,如果丢包了,那么这个请求要很久(超过1分钟)才会返回失败。   请教下有碰到过这个问...

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

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

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

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

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

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

4. HttpRequest在native下没有abort方法吗? [ 83%]

HttpRequest在native下没有abort方法吗? 在native下会出现http请求阻塞情况。即请求A没有回包的情况下,请求B会一直阻塞。 是否有这个问题?官方是否可以答复下?谢谢啦! 我预想的是可以临时先加一个超时,手动关闭请求。但是H...

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

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

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

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

6. 排坑:Laya.HttpRequest()无效 [ 74%]

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

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

7. HttpRequest感觉没有发成功 [ 71%]

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

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

8. Laya.HttpRequest 没有调用回调方法? [ 70%]

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

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

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

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

...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