var Paho = require('../../paho-mqtt');var client = new Paho.Client('IP地址',端口號(hào), "clientId");Page({data:{},publishMessage: function () {var message = new Paho.Message('hello world');message.destinationName = "test/topic"; client.send(message);},onLoad: function () {client.onMessageArrived = function (msg) { wx.showToast({ title: msg.payloadString });}client.onConnectionLost = function (responseObject) { if (responseObject.errorCode !== 0) { console.log("onConnectionLost:" + responseObject.errorMessage); }}client.connect({ useSSL: true, cleanSession: false, keepAliveInterval: 60, userName:123456, password:1233456, onSuccess: function () { console.log('connected'); client.subscribe("test/topic", { qos: 1 }); }});}})現(xiàn)在報(bào)錯(cuò)如下:WebSocket connection to 'wss://IP地址,/mqtt' failed: Error in connection establishment: net::ERR_CONNECTION_RESET
微信小程序使用MQTT報(bào)錯(cuò)求解
www說
2019-02-27 09:23:14