大约有 147 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0035 秒)
Laya_社区(136) Laya2.0_文档(4) Laya3.0_文档(2) laya_api(1) Laya_示例(1) Laya3.0_api(1) Laya2.0_示例(1) Laya2.0_api(1)
...求会先去Download请求的地址 项目打包成app后运行,使用XMLHttpRequest发出post请求后,log中出现了Download 我post的地址。然后有时候会卡住,大概5秒后会出现Download end:200的log,这之后才会真正把post请求发出去。有时候Download会直接超...
来源: Laya_社区 发布时间: 20180315
...this.callbackHandler = callback; // this.errcallback = 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, 'ch...
来源: Laya_社区 发布时间: 20180916
HTTP以POST发送Byte字节流,服务器无法解析 JS代码: function starConnection() { console.log("starConnection"); conn=new HttpRequest(); conn.once(Event.PROGRESS, this, onHttpRequestProgress); conn.once(Event.COMPLETE, this, onHttpRequestComplete); conn.once(Event.ERROR, this, onHttpRequ...
来源: Laya_社区 发布时间: 20160726
LayaNative中偶尔会出现所有HTTP POST方式交互均无回应的问题 使用的LayaNative版本为2.7。偶尔会出现所有使用了POST方式的Ajax请求发送后无法执行成功或失败回调的情况。不知是否有人和我遇到过一样的问题。 我的POST请求全部设置...
来源: Laya_社区 发布时间: 20200810
安卓环境下HTTP Post请求偶尔会丢包 2018-05-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 o_O 赞同来自: 网页版本不会丢包 安卓下回偶尔丢包 写了个简单的示例见附件 ...
来源: Laya_社区 发布时间: 20180518
LayaFlash是否支持post数据的传输? as里使用URLLoader类中的http 的post方法客户端服务端通讯成功,但是转换成h5后post方法变成了get var urlLoader:URLLoader=new URLLoader(); urlLoader.dataFormat=URLLoaderDataFormat.BINARY; urlLoader.addEventListener(Event.COMPLETE,...
来源: Laya_社区 发布时间: 20151127
post提交问题 XMLHttpRequest cannot load http://xxx.xxx.xxx/subData. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'file://' is therefore not allowed access. The response had HTTP status code 500. 后台是用c#写的,请问出现这问题怎么解决,...
来源: Laya_社区 发布时间: 20171225
http 请求 once 的 回调参数,如何传递和接收? once () method public function once(type:String, caller:*, listener:Function, args:Array = null):EventDispatcher使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦...
来源: Laya_社区 发布时间: 20180304
...3&&456", "b":"ccc"}; str="paramA="+JSON.stringify(tj); //xhr.send("http:xxx.xxx.com","a=xxxx&b=xxx","post","text"); xhr.send("http:xxx.xxx.com",str,"post","text"); 服务端解析的时候,paramA参数的值为:{"a":"123 剩下的被解析为另一个post变量了。 试了字符转...
来源: Laya_社区 发布时间: 20171013
...gColor = "#232628"; this.connect(); this.showLogger(); } connect() { const HttpRequest = Laya.HttpRequest, Event = Laya.Event; hr = new HttpRequest(); hr.once(Event.PROGRESS, this, this.onHttpRequestProgress); hr.once(Event.COMPLETE, this, this.onHttpRequestComplete); hr.once(Event.ERROR, this, this...
来源: Laya2.0_示例 发布时间: 20241117