我在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的时候还没连上:");
}
同样遇到这个问题,请问楼主咋解决的,求教!!!