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

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

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

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

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

2. 网络请求添加headers后 post数据错误 [ 99%]

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

3. HTTPPOST发送Byte字节流,服务器无法解析 [ 97%]

HTTPPOST发送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

4. LayaNative中偶尔会出现所有HTTP POST方式交互均无回应的问题 [ 97%]

LayaNative中偶尔会出现所有HTTP POST方式交互均无回应的问题 使用的LayaNative版本为2.7。偶尔会出现所有使用了POST方式的Ajax请求发送后无法执行成功或失败回调的情况。不知是否有人和我遇到过一样的问题。 我的POST请求全部设置...

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

5. 安卓环境下HTTP Post请求偶尔会丢包 [ 96%]

安卓环境下HTTP Post请求偶尔会丢包 2018-05-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 o_O 赞同来自: 网页版本不会丢包  安卓下回偶尔丢包  写了个简单的示例见附件  ...

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

6. LayaFlash是否支持post数据的传输? [ 90%]

LayaFlash是否支持post数据的传输? as里使用URLLoader类中的httppost方法客户端服务端通讯成功,但是转换成h5后post方法变成了get var urlLoader:URLLoader=new URLLoader(); urlLoader.dataFormat=URLLoaderDataFormat.BINARY; urlLoader.addEventListener(Event.COMPLETE,...

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

7. post提交问题 [ 90%]

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

8. http 请求 once 的 回调参数,如何传递和接收? [ 90%]

http 请求 once 的 回调参数,如何传递和接收? once () method  public function once(type:String, caller:*, listener:Function, args:Array = null):EventDispatcher使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦...

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

9. 如何post发送json数据中包含&&特殊字符,怎么办? [ 90%]

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

10. 网络和格式-POST [ 89%]

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