大约有 12 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
...游戏如何监听网络是否连接 虽然单机H5游戏不需要建立webSocket实时通信,但是由于H5游戏在玩的时候是需要时不时从服务器下载资源的,所以为了确保在需要下资源的时候不断网,游戏能正常进行,游戏需要监听当前网路是否断...
来源: Laya_社区 发布时间: 20170206
LayaNative WebSocket无法触发onclose LayaNative2.6版本中,对Laya.Socket对象调用close方法后不会派发Event.CLOSE事件 2020-05-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为什么被折叠?...
来源: Laya_社区 发布时间: 20200520
websocket出错 socket=new Laya.Socket(); socket.connectByUrl("ws://192.168.1.229:8282"); //socket.connect("0.0.0.0",8383); output=socket.output; socket.on(Laya.Event.OPEN,this,onSocketOpen); socket.on(Laya.Event.CLOSE,this...
来源: Laya_社区 发布时间: 20170116
...rver; private static final String TAG = "HttpServer"; /** * 服务器端的socket */ ServerSocket server; /** * 服务器监听的端口号 */ public static final int PORT = 8080; // public static HttpServer getInstance(){ // if(httpServer == null){ // httpServer = new HttpServer(); // } // return h...
来源: Laya_社区 发布时间: 20160104
...无法连接wss 示例代码如下: const url = "wss://xxx.com:8888"; this.socket = new Laya.Socket(); this.socket.endian = Laya.Byte.BIG_ENDIAN; this.socket.on(Laya.Event.OPEN, this, this.onConnectSuccess); this.socket.on(Laya.Event.CLOSE, this, this.onDisonnect); this.socket.on(Laya.Event.ERROR, t...
来源: Laya_社区 发布时间: 20180910
websocket无法连接 this.socket = new Laya.Socket(); //这里我们采用大端 this.socket.endian = Laya.Byte.BIG_ENDIAN; this.socket.connectByUrl("ws://"+host+":"+port+"/hoopster"); //建立连接 this.socket.on(Laya.Event.OPEN, this, onOpen); this.socket.on(Laya.Event.MESSAGE, this, onReceive)...
来源: Laya_社区 发布时间: 20180312
用Socket连接服务器,服务端显示已经有登录,但Event.OPEN没有触发 package tcp { import laya.events.Event; import laya.net.Socket; import laya.utils.Byte; public class CConnector extends Socket { protected ...
来源: Laya_社区 发布时间: 20170920
...omloClient如: /** 基于pomelo网络握手通讯*/ export class Socket extends Laya.EventDispatcher { private pomelo: Pomelo; private mDecorate:Decorate;//装饰器 private mHost: string; private mPort: number; private mConnected...
来源: Laya_社区 发布时间: 20161109
...Demo 附件 TypeScript下HttpRequest发送Post请求有Bug? 用了第三方socket类 项目在IDE上可以连接正常运行,为什么打包APK之后在手机上就连接不上socket LayaAir2.61 测试版 物理引擎bug 百分百 复现 【BUG备忘录】关于Tween动画无法正常作用问题-...
来源: Laya_社区 发布时间: 20170607
socket无法连接服务器 客户端代码: let PORT: number = 8080; let IP: string = "127.0.0.1"; export class NetSocket extends Laya.Socket{ private static _instance: NetSocket; public static get instance(): NetSocket { if (!NetSocket._instance) ...
来源: Laya_社区 发布时间: 20170602