这是我的paho客户端连接
var client = new Paho.MQTT.Client(Constants.MQTT_HOST, Number(Constants.MQTT_PORT), Constants.MQTT_CLIENT_ID);
client.onConnectionLost = onConnectionLost;
client.onMessageArrived = onMessageArrived;
client.onMessageDelivered = onMessageDelivered;
client.connect({onSuccess:onConnect});
当我使用
时 var message = new Paho.MQTT.Message(Utils.uintToString(enc));
message.destinationName = targetTopicName;
client.send(message);
要发送消息,onMessageDelivered
和onMessageArrived
都会被调用。
答案 0 :(得分:1)
您是订阅相同的主题,还是使用包含它的通配符(例如#)?
如果你那时,将调用onMessageDelivered和onMessage Arrived。如果您没有订阅,那么这听起来像是您可以在这里提出的错误:https://github.com/eclipse/paho.mqtt.javascript/issues