我已经搜索了很长时间,但我还没有找到任何有用的东西。
我正在尝试实现一个 MQTT-Javascript-Client。随着 Mosquitto V1.0 的发布,在http://mosquitto.org/js/mosquitto-1.0.js上发布了一个 javascript/websocket-client。
但我不知道如何以正确的方式实现这一点。
例如:我使用http://broker.mqttdashboard.com上的示例服务器作为代理。当我在我的 xampp-Server 上运行以下 html 时,没有任何反应,并且在代理端没有连接客户端。我认为我实现它的方式有一些不正确的地方。如果有人可以帮助我,那就太好了。
<html><head>
<script type="text/JavaScript" src="mosquitto-1.0.js"></script>
<script type="text/JavaScript">
var t = new Mosquitto();
t.connect('ws://broker.mqttdashboard.com:1883/',10);
t.subscribe("mqttdashboard/testtopic", 0);
</script>
</head>
<body></body></html>
我也知道 node.js-thing,但我更喜欢使用 websocket-way。谢谢。