大约有 51 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0031 秒)
如何添加header文件 HttpRequest的send函数的最后一个参数是一个数组,总是提醒这个数组里面的元素不是一个有效的头,应该如何写 2018-04-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提...
来源: Laya_社区 发布时间: 20180403
# HttpRequest详解 在项目中我们难免会有发送http请求的需求,在LayaAir引擎中HttpRequest就是我们发送请求的基本类。HttpRequest类其实包装的就是原生的`XMLHttpRequest`,为了开发者更深入的了解这个类,我们先从XMLHttpRequest 开始。 ## 原...
来源: Laya2.0_文档 发布时间: 20210715
...I DocumentationAll Packages | All Classes | Index | Frames No Frames HttpRequestProperties | Methods | Events Packagelaya.netClasspublic class HttpRequestInheritanceHttpRequest EventDispatcher Object HttpRequest 通过封装 HTML XMLHttpRequest 对象提供了对 HTTP 协议的完全的访...
来源: Laya2.0_api 发布时间: 20190513
# HttpRequest详解 在项目中我们难免会有发送http请求的需求,在LayaAir引擎中HttpRequest就是我们发送请求的基本类。HttpRequest类其实包装的就是原生的`XMLHttpRequest`,为了开发者更深入的了解这个类,我们先从XMLHttpRequest 开始。 ## 原...
来源: Laya2.0_文档 发布时间: 20210714
...-type也变成了application/x-www-form-urlencoded 代码如下: static httpRequest(method:string, url:string, data:any, headers:Array<string>, cb:(err:Error, data?:any)=>void) { let req = new Request(); req.on(Event.COMPLETE, this, (data) => { cb(null, data); }); req.on(Event.ERROR, ...
来源: Laya_社区 发布时间: 20170123
...callback = errcallback; //this.http.once(Laya.Event.PROGRESS, this, this.onHttpRequestProgress); this.http.once(Laya.Event.COMPLETE, this, this.onHttpRequestComplete); this.http.once(Laya.Event.ERROR, this, this.onHttpRequestError); this.http.send(url, 'chapterid=7125', 'post', 'json', headers); 正...
来源: Laya_社区 发布时间: 20180916
... 之前我个人写的 不知道是不是在这个里面 var xhr = new XMLHttpRequest(); xhr.open("GET",url, true) xhr.setRequestHeader("Accept", "*/*"); xhr.setRequestHeader("Content-Type", "application/json"); 还是说用参考代码里的HttpRequest() var xhr = new Laya.HttpRequest(); xhr.http.s...
来源: Laya_社区 发布时间: 20180704
...(this: void, data: JSON) => void): void { let hr = new Laya.HttpRequest(); hr.once(Laya.Event.COMPLETE, this, (e: any): void => { callback(JSON.parse(hr.data)); }); hr.send(url, JSON.stringify(data), 'post', 'text', ['content-type'...
来源: Laya_社区 发布时间: 20190829
...lic/Protected All Inherited Externals Only exported Menu Globals "laya/net/HttpRequest" HttpRequest Class HttpRequest HttpRequest 通过封装 HTML XMLHttpRequest 对象提供了对 HTTP 协议的完全的访问,包括做出 POST 和 HEAD 请求以及普通的 GET 请求的能力。 HttpRequest ...
来源: Laya3.0_api 发布时间: 20231115
laya.core.js中HttpRequest的bug报告 var HttpRequest { ...... __proto.send=function(url,data,method,responseType,headers){ (method)&& (method="get"); 应该是(method===void 0)&& (method="get"); 否则无法使用post ...... } ...... } 2016-12-01 添加评论 免费帖 --> 分享 ...
来源: Laya_社区 发布时间: 20161201