JSON 消息对象缺少 ID 属性
JSON message object is missing the id property
当我尝试使用 QWebChannel 将基于 QObject 的子类的实例发送到 html 客户端时,出现以下错误:
JSON message object is missing the id property: {
"type": 3
}
服务器客户端本身连接成功,只是对象无法发送。可能有人知道答案吗?
要在 运行 Qt 服务器后使用 Web 浏览器中的 Qt WebChannel Standalone Example and load file:///C:/Qt/5.5/Examples/Qt-5.5/webchannel/build-standalone-Desktop_Qt_5_5_0_MinGW_32bit-Debug/index.html?webChannelBaseUrl=ws://localhost:12345 重现。
简单的解决方案..我不得不更新我的qwebchannel.js(看起来here),然后它就起作用了...
当我尝试使用 QWebChannel 将基于 QObject 的子类的实例发送到 html 客户端时,出现以下错误:
JSON message object is missing the id property: { "type": 3 }
服务器客户端本身连接成功,只是对象无法发送。可能有人知道答案吗?
要在 运行 Qt 服务器后使用 Web 浏览器中的 Qt WebChannel Standalone Example and load file:///C:/Qt/5.5/Examples/Qt-5.5/webchannel/build-standalone-Desktop_Qt_5_5_0_MinGW_32bit-Debug/index.html?webChannelBaseUrl=ws://localhost:12345 重现。
简单的解决方案..我不得不更新我的qwebchannel.js(看起来here),然后它就起作用了...