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的时候还没连上:"); }