大约有 7 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0039 秒)
...-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
...下例子。 ```java package { import laya.events.Event; import laya.net.HttpRequest; import laya.utils.Browser; public class Main { public function Main() { //初始化引擎 Laya.init(500,500); var httpreq:HttpRequest = new HttpRequest(); httpreq.on(Event.COMPLETE,this,this.completeHandler); httpr...
来源: Laya2.0_文档 发布时间: 20210715
...eo; constructor() { //初始化引擎 Laya.init(500,500); var httpreq:Laya.HttpRequest = new Laya.HttpRequest(); httpreq.on(Laya.Event.COMPLETE,this,this.completeHandler); httpreq.on(Laya.Event.ERROR,this,this.errorHandler); httpreq.send("demo1.js"); } private completeHandler(e:any):void{ var script...
来源: Laya2.0_文档 发布时间: 20210715
...```typescript //初始化引擎 Laya.init(500,500); var httpreq = new Laya.HttpRequest(); httpreq.on(Laya.Event.COMPLETE,this,completeHandler); httpreq.on(Laya.Event.ERROR,this,errorHandler); httpreq.send("demo1.js"); function completeHandler(e){ var script = Laya.Browser.document.createElement("scr...
来源: Laya2.0_文档 发布时间: 20210714
...textinput移除后再添加会将之前的内容全部赋值给全部input HttpRequest在firefox里面执行正常在ios出现err 问题状态 最新活动: 2018-09-19 15:01 浏览: 1563 关注: 1 人
来源: Laya_社区 发布时间: 20180919
...eo; constructor() { //初始化引擎 Laya.init(500,500); var httpreq:Laya.HttpRequest = new Laya.HttpRequest(); httpreq.on(Laya.Event.COMPLETE,this,this.completeHandler); httpreq.on(Laya.Event.ERROR,this,this.errorHandler); httpreq.send("demo1.js"); } private completeHandler(e:any):void{ var script...
来源: Laya3.0_文档 发布时间: 20241014
...的语言服务(2.1.5)。可能出现不一致的编译错误 TypeScript下HttpRequest发送Post请求有Bug? 我用list.array=Array;数据全部插进去数组里了,但是list中没有完全展示数组数据,只展示了其中的图片部分,数组能console出,那个list中的数据也...
来源: Laya_社区 发布时间: 20170724