我正在尝试使用 Nodejs 代码实现共享主题概念。
现在我计划使用 Nodejs 代码实现主题别名。
我试过下面的代码,但我没有得到正确的结果:
const mqtt = require('mqtt')
const clientThree = mqtt.connect('mqtt://192.168.x.xx:1883')
var options={
topicAliasMaximum:1,
};
clientThree.on('connect', () => {
let i = 0
clientThree.publish('test', "hello",options);
})