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

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

71. sprite之bug [ 66%]

sprite之bug http://www.gamework.cn/blog/post/qykings/sprite%E4%B9%8Bbug public function set scaleX(value:Number):void {  var style:Style = getStyle();    if(!style)  {  trace("----sprite--")  return;  }    if(!style._tf)  {  trace("----sprite--_tf is null--");  return;  }    if (sty...

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

72. LayaNative中运行程序网络请求异常 [ 66%]

LayaNative中运行程序网络请求异常 在我们项目中: 1.http请求使用的是Laya引擎中的HttpReqeust。 2.WebSocket因为历史原因使用的是SocketIO框架。 3.服务器是nginx,使用了多进程负载均衡。   现象: 在网页中和手机浏览器中访问服务器一切...

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

73. Native下http请求,Error事件中的error对象错误码全都是404 [ 65%]

Native下http请求,Error事件中的error对象错误码全都是404 在native下,发送http请求,无论设置返回的errorCode是多少,返回统一都是404,但在网页版中不会有这个问题,请问这个是不是引擎的问题,还是有其他可解决的办法 2018-05-28 ...

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

74. load 跨域请求 [ 65%]

...der报错,你可以网上搜索下相关解决跨域的帖子,譬如:http://blog.csdn.net/enter89/article/details/51205752 你把header头加到服务器端试下! 2017-07-19 0 0 分享 微博 QZONE 微信 banying 赞同来自: 请问那能在客户端解决吗?我现在已经让我这个j...

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

75. session获取不到 [ 65%]

session获取不到 我用http post请求。do,在web端同样请求一个.do,web项目里面的http请求没有问题,可以检测到session,但是换成laya的去请求,拿不到session的值,HttpSession session = request.getSession(false); 拿不到 2017-03-17 添加评论 免费帖 --> ...

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

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

...求特定的域名下加上跨域标识,这里以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

77. native下HttpRequest设置超时无效 [ 65%]

native下HttpRequest设置超时无效 android原生,HttpRequest请求时设置超时: var httpRequest = new HttpRequest(); httpRequest.http.timeout = 3000; 在做http请求时,如果丢包了,那么这个请求要很久(超过1分钟)才会返回失败。   请教下有碰到过这个问...

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

78. request failed status:0 text: IOS HttpRequest [ 65%]

request failed status:0 text: IOS HttpRequest var data = { rechargeId:"1", consumerId:"533", } alert(JSON.stringify(data)); hr = new HttpRequest(); hr.once(Event.PROGRESS, this, onHttpRequestProgress); hr.once(Event.COMPLETE, this, onHttpRequestComplete); hr.once(Event.ERROR, this, onHttpRequestErr...

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

79. LayaNative中运行程序网络请求卡顿或异常 [ 64%]

...在Native打包的app或在LayaPlayer中运行的程序在第一次使用httpRequest或WebSocket请求时会出现卡顿的情况。卡顿时间从1秒-10秒不等,http请求有时还会返回404错误。第一次请求成功后便不会出现卡顿情况一切流畅。 第二种情况是: 程...

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

80. typeScript Java互调问题 [ 64%]

...localize","false");         mPlugin.game_plugin_set_option("gameUrl", "http://10.0.0.114:8900/bin/index.html");         mPlugin.game_plugin_init();         View gameView = mPlugin.game_plugin_get_view();         this.setContentView(gameView);         isLoad=true;     ...

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