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

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

11. 使用HttpRequest向外部链接请求ip所在省份时,遇到 No 'Access-Control-Allow-Origin' header错误 [ 92%]

...部链接请求ip所在省份时,遇到 No 'Access-Control-Allow-Origin' header错误 想实现的功能是获得当前ip所在省份 经度娘查得: 新浪的IP地址查询接口:http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js 尝试了两种方式: 1.  <script type="text/...

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

12. 改变不了请求消息头,已近设置了 [ 92%]

改变不了请求消息头,已近设置了 let headers:Array<any> = new Array<any>(); headers.push("Content-Type", "application/json") //headers={"Content-Type":"application/json"} //let answers={"answers":core.CommonData.DaTi,"examUuid":network.HttpHelper.compile(core.CommonData.Uui...

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

13. 打包app,http无法设置content-type [ 91%]

...d   代码如下: 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, this, (err) => { console.error(err); cb(err); ...

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

14. 新手常见问题:配置环境之后点击运行报错、黑屏(ActionScript-LayaAir基础篇(AS3)-快速上手) [ 90%]

...下加上跨域标识,这里以nginx为例: ```nginx http { ...... add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Headers X-Requested-With; add_header Access-Control-Allow-Methods GET,POST,OPTIONS; ...... } ``` 这样就可以实现GET,POST,OPTIONS的跨域请求的支...

来源: Laya2.0_文档 发布时间: 20210715

15. 给以个对象绑定两个on方法为什么只能执行一次 ? [ 89%]

... this.orchardMenu.getChildByName("market"),//行情             this.header.getChildByName("headerToggle"),//下拉菜单按钮             this.header.getChildByName("toggleMenu").getChildByName("log"),//日志             this.header.getChildByName("toggleMenu").getChildByName("r...

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

16. 解决跨域相关! [ 87%]

...名下加上跨域标识,这里以nginx为例: http {   ......   add_header Access-Control-Allow-Origin *;   add_header Access-Control-Allow-Headers X-Requested-With;   add_header Access-Control-Allow-Methods GET,POST,OPTIONS;   ...... } 这样就可以实现GET,POST,OPTIONS的跨域请求...

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

17. HttpRequest问题 [ 87%]

...18-02-08 14:11 看了下,我们是数据请求,重新修改后也加了header("Access-Control-Allow-Origin: *"),发布后还是这种情况。。重点是我们现在请求的并不是自己的服务器,是请求微信支付接口的。。这种要如何解决啊? qian • 2018-0...

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

18. request failed status:0 text: IOS HttpRequest [ 86%]

...nHttpRequestComplete); hr.once(Event.ERROR, this, onHttpRequestError); var headers = []; headers.push("Content-Type"); headers.push("application/json"); hr.send('http://xxxxxxxxxxxxxxxxxx', JSON.stringify(data), 'post', 'json',headers);<strong></strong>  浏览器 可以正常 访问 ...

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

19. websocket 中 protobuf 数据的发送与接收的具体方法是怎样的? [ 83%]

...据的发送与接收的具体方法是怎样的? package test; enum MSG_HEADER { LOGIN_GAME = 0x00000001; JOIN_GAME = 0x00000002; EXIT_GAME = 0x00000003; } message LoginGame { required string account = 1; // 账号 required string passwd = 2; // 密码 }第一次使用protobuf与服务端通讯...

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

20. 求解关于跨域的具体操作 [ 81%]

求解关于跨域的具体操作 在request header加上Origin 求解下代码的具体操作 初次接触不知道怎么写 之前我个人写的 不知道是不是在这个里面 var xhr = new XMLHttpRequest(); xhr.open("GET",url, true) xhr.setRequestHeader("Accept", "*/*"); xhr.setRequestHeader...

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