大约有 18 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0027 秒)
...ivate connect(): void { console.log("connect...."); this.hr = new Laya.HttpRequest(); this.hr.once(Laya.Event.PROGRESS, this, this.onHttpRequestProgress); this.hr.once(Laya.Event.COMPLETE, this, this.onHttpRequestComplete); this.hr.once(Laya.Event.ERROR, this, this.onHttpRequestError); this.hr.send(...
来源: Laya_社区 发布时间: 20201023
...manager的情况下不好协调。 手机调试时http请求错误,返回Request failed Status:0 怎么使用http请求 问题状态 最新活动: 2017-06-26 11:02 浏览: 1345 关注: 3 人 贺杰 • 2020-07-14 13:26 如果打包APK http被挟持了要怎么办呢
来源: Laya_社区 发布时间: 20170626
...t = text.replace("{" + i + "}", args[i]); } this._text = text; } } 3、HTTPRequest中错误输出:前面的status和statusText都是空的 根本打印不出任何东西。 /** * @private * 请求出错侦的听处理函数。 * @param e 事件对象。 */ protected function _onError(e:*):void { e...
来源: Laya_社区 发布时间: 20180820
...加,直接点运行就报错?? laya.core.js:23023 Access to XMLHttpRequest at 'file:///Users/andyzu/Desktop/LayaGame/demo/myLaya/bin/version.json' from origin 'null' has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-exten...
来源: Laya_社区 发布时间: 20190718
HttpRequest在firefox里面执行正常在ios出现err layaair使用了httpRequest获取json数据,在firefox里正常,但是用了ios自带的safari就出现err,报错是request failed status:0 我的学习作品地址是http://www.mubugu.com/test/poker/bin/index.html 大家可以试试看...
来源: Laya_社区 发布时间: 20170314
请问Laya.HttpRequest可以get请求Https地址么? 我请求微信登录的access_token,是一个Https地址,但是一直返回错误 request failed status:0 text:,但是我把请求地址换成官网demo的地址'http://xkxz.zhonghao.huo.inner.layabox.com/api/getData?name=myname&...
来源: Laya_社区 发布时间: 20180814
HttpRequest问题 我现在用js代码通过http访问 在laya引擎里测试是有数据返回的,请求是成功的。。 但是发布成h5项目之后,布置好服务器。。打开链接点击请求访问时,却访问失败,返回错误码:Request failed Status:0 text 请问这...
来源: Laya_社区 发布时间: 20180208
...151.248/sf_serve ... 3B%3B alert("url=" + url); var req = new laya.net.HttpRequest(); req.on(laya.events.Event.COMPLETE, null, cb_onSuccess); req.on(laya.events.Event.ERROR, null, cb_onFail); req.send(url); } function cb_onSuccess(response) { alert("response=" + response); // 成功输出:{"ret":1...
来源: Laya_社区 发布时间: 20161103