Kaynağa Gözat

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

HuangKai 1 hafta önce
ebeveyn
işleme
93f6aeee4d
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  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);