热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

在MQTT客户端"未捕获的ReferenceError:未定义消息"

如何解决《在MQTT客户端"未捕获的ReferenceError:未定义消息"》经验,为你挑选了1个好方法。

我正在尝试基于websocket的简单MQTT客户端,并且在Chrome控制台上出现"Uncaught ReferenceError:Messaging is defined defined"错误.



  
  


  
 


  

Example Web Messaging web page.

Connect Make a connection to the server, and set up a call back used if a message arrives for this client.
Subscribe Make a subscription to topic "/World".
Send Create a Message object containing the word "Hello" and then publish it at the server.
Receive A copy of the published Message is received in the callback we created earlier.
Disconnect Now disconnect this client from the server.

ERROR在线"var client = new Messaging.Client(wsbroker,wsport,"

错误操作系统"未捕获的ReferenceError:未定义消息"

java脚本来自http://git.eclipse.org/c/paho/org.eclipse.paho.mqtt.Javascript.git/tree/src/mqttws31.js

请建议任何解决方案......



1> hardillb..:

您正在使用一个旧示例,包名已更改它不再是Messaging应该是:

...
var client = new Paho.MQTT.Client(wsbroker, wsport,
    "myclientid_" + parseInt(Math.random() * 100, 10));
...

编辑:test.mosquitto.org的端口号也是8080而不是80


推荐阅读
author-avatar
dujiaolianglong
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有