Explorar o código

在sdk方法中解析数据,传出json数据

HuangKai hai 1 semana
pai
achega
93f6aeee4d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/view/utils/connectTestTool.js

+ 1 - 1
src/view/utils/connectTestTool.js

@@ -10,7 +10,7 @@ export default function connectTestTool(url) {
 class TestToolSocket {
 	constructor(url){
 		this._socket = new WebSocket(url);
-		this._socket.onmessage = (e) => this.onRecieveMessage(e);
+		this._socket.onmessage = (e) => this.onRecieveMessage(JSON.parse(e.data).data);
 		this._socket.onclose = (e) => this.onClose(e);
 		this._socket.onerror = (e) => this.onError(e);
 		// this._socket.onopen = (e) => this.onOpen(e);