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

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

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. HttpRequest详解(TypeScript-LayaAir基础篇(TS)-数据与通信) [ 94%]

# HttpRequest详解 在项目中我们难免会有发送http请求的需求,在LayaAir引擎中HttpRequest就是我们发送请求的基本类。HttpRequest类其实包装的就是原生的`XMLHttpRequest`,为了开发者更深入的了解这个类,我们先从XMLHttpRequest 开始。 ## 原...

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

4. HttpRequest详解(ActionScript-LayaAir基础篇(AS3)-数据与通信) [ 94%]

#HttpRequest详解 ​ 在项目中我们难免会有发送http请求的需求,在LayaAir引擎中HttpRequest就是我们发送请求的基本类。HttpRequest类其实包装的就是原生的`XMLHttpRequest `,为了开发者更深入的了解这个类,我们先从XMLHttpRequest 开始。 ##...

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

5. HttpRequest详解(JavaScript-LayaAir基础篇(JS)-数据与通信) [ 94%]

# HttpRequest详解 在项目中我们难免会有发送http请求的需求,在LayaAir引擎中HttpRequest就是我们发送请求的基本类。HttpRequest类其实包装的就是原生的`XMLHttpRequest`,为了开发者更深入的了解这个类,我们先从XMLHttpRequest 开始。 ## 原...

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

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

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

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

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

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

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

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

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

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

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

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