mqtt发Uint8Array就自动断开mqtt服务器连接,是怎么回事啊?
const bytestream = new Uint8Array( new ArrayBuffer(12));//读取型号规格
bytestream[0]=0x55;
bytestream[1]=0x03;
bytestream[2]=0x00;
bytestream[3]=0x00;
bytestream[4]=0x00;
bytestream[5]=0x00;
bytestream[6]=0x00;
bytestream[7]=0x00;
bytestream[8]=0x00;
bytestream[9]=0x00;
bytestream[10]=0x00;
bytestream[11]=0xFC;
一发布消息就断开连接了 ,是咋回事啊
client.publish(pub,bytestream);
在开发工具的真机调试下又正常,可以正常收发数据,在开发工具的模拟器上不行和上传到体验版也不行
用的是mqtt.js
求大神解决