我使用Paho客戶端從JavaScript代碼發佈消息。這些消息正在發佈,因爲我可以在用戶端看到它們,儘管我在終端上看不到它們。Mosquitto不在終端上打印郵件
client = new Paho.MQTT.Client("localhost", 9002, "myClient");
client.connect();
message = new Paho.MQTT.Message("hey");
message.destinationName = "/World";
client.send(message);
的命令行中使用:
/usr/local/sbin/mosquitto -c /usr/local/etc/mosquitto/mosquitto.conf
你不能看到他們在哪裏?你已經顯示了發佈代碼,但沒有解釋你是如何訂閱它們的。默認情況下,郵件不會打印在蚊子經紀人日誌中 – hardillb
此外,主題真的不應該以'/'開頭 – hardillb
我將它們發佈在蚊子經紀商上,但我無法在蚊子客戶端上看到它們。 – Aquarius24