获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
同样遇到这个问题,请问楼主咋解决的,求教!!!
cocos 发微信小游戏 用websocket send 发送数据给后台数据失败我在cocos,socket链接成功,要发个int32,在开发者工具能发送成功,手机端无论ios或者安卓都不能发送出去 if (this.isConnect()) { console.log("发送服务器ID:" + this._socket.url); let binary = new Int32Array(new ArrayBuffer(32)); binary[0] = serverId; this._socket.send(binary); } else { console.log("发送服务器ID的时候还没连上:"); }
06-13