npm install mqtt@3.0.0
注意要指定下载3.0.0版本
// 引入MQTT
const mqtt = require('mqtt/dist/mqtt.js')
// 声明client
data(){return {client: null}
}
//方法
//连接服务器connect() {let options = {username: "xxx",password: "xxxx",cleanSession : false,keepAlive:60,clientId: 'mqttjs_' + Math.random().toString(16).substr(2, 8),connectTimeout: 4000}//如果是apk,ws换成wxthis.client = mqtt.connect('ws://ip:port/mqtt',options);this.client.on("connect", (e)=>{console.log("成功连接服务器:",e);// 订阅 topic。如果订阅多个["test1","test2"]this.client.subscribe(['top/#', 'three/#', '#'], { qos: 1 }, (err)=> {if (!err) {console.log("订阅成功");//向主题叫“pubtop”发布一则内容为'hello,this is a nice day!'的消息this.publish("pubtop", 'hello,this is a nice day!')} else {console.log('消息订阅失败!')}});});//重新连接this.reconnect()//是否已经断开连接this.mqttError()//监听获取信息this.getMessage()}//发布消息@topic主题 @message发布内容publish(topic,message) {if (!this.client.connected) {console.log('客户端未连接')return}this.client.publish(topic,message,{qos: 1},(err) => {if(!err) {console.log('主题为'+topic+ "发布成功")}})}
//监听接收消息getMessage() {this.client.on("message", (topic, message) => {if(message) {console.log('收到来着',topic,'的信息',message.toString())const res = JSON.parse(message.toString())//console.log(res, 'res')switch(topic) {case 'top/#' :this.msg = resbreak;case 'three/#' :this.msg = resbreak;case 'three/#' :this.msg = resbreak;default:returnthis.msg = res}this.msg = message}});}
//监听服务器是否连接失败mqttError() {this.client.on('error',(error) => {console.log('连接失败:',error)this.client.end()})}
//取消订阅unsubscribe() {this.client.unsubscribe(this.mtopic, (error)=> {console.log('主题为'+ this.mtopic+'取消订阅成功',error)})}//断开连接unconnect() {this.client.end()this.client = nullconsole.log('服务器已断开连接!')},
//监听服务器重新连接reconnect() {this.client.on('reconnect', (error) => {console.log('正在重连:', error)});}