大约有 28 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0034 秒)
laya2.0 http 发送请求跨域报错 这边用原生xmlhttprequest发送请求正常,用laya.httprequest 发送请求报错。 Access to XMLHttpRequest at 'file:///C:\Users\pc\AppData\Roaming\Tencent\QQ\Temp\%W@GJ$ACOF(TYDYECOKVDYB.pnghttp://gs.mingdikeji.com/passion//system/getVersion' ...
来源: Laya_社区 发布时间: 20190805
...务上的资源,本地资源好像没法拉取。 另外,我发现用XMLHttpRequest也可以拉取,就是Laya的Loader对象,把资源类型设置成ArrayBuffer就行了。 回调回来初始化WebAssembly就可以调用。 2019-08-26 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个...
来源: Laya_社区 发布时间: 20181107
...请求会先去Download请求的地址 项目打包成app后运行,使用XMLHttpRequest发出post请求后,log中出现了Download 我post的地址。然后有时候会卡住,大概5秒后会出现Download end:200的log,这之后才会真正把post请求发出去。有时候Download会直接...
来源: Laya_社区 发布时间: 20180315
...不用这样,今天忽然就必须要关闭才可以,否则就报错,xmlhttpRequest不能加载 附件 : --> 2017-10-12 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Monica - 知识达人 赞同来自: 这...
来源: Laya_社区 发布时间: 20171012
...顿情况一切流畅。 后打开安卓发布包查看发现:window.XMLHttpRequest和window.WebSocket这两个属性在Native中被重新修改成了Native自己封装的类。 查看Android studio debug发现 红色框中为http请求第一次卡顿的log信息(这个时候在download什...
来源: Laya_社区 发布时间: 20180309
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
...如下: self.addEventListener('message', function (e) { var xmlreq = new XMLHttpRequest(); xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","../atlas/comp.json"); xmlreq.send() }, false); 这个例子是...
来源: Laya3.0_文档 发布时间: 20241014
...ypescript self.addEventListener('message', function (e) { var xmlreq = new XMLHttpRequest(); xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","res/atlas/comp.json"); xmlreq.send() }, false); ``` 这个例子...
来源: Laya2.0_文档 发布时间: 20210715
...ypescript self.addEventListener('message', function (e) { var xmlreq = new XMLHttpRequest(); xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","res/atlas/comp.json"); xmlreq.send() }, false); ``` 这个例子...
来源: Laya2.0_文档 发布时间: 20210715
...avascript self.addEventListener('message', function (e) { var xmlreq = new XMLHttpRequest(); xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","res/atlas/comp.json"); xmlreq.send() }, false); ``` 这个...
来源: Laya2.0_文档 发布时间: 20210715