소스 검색

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

HuangKai 1 주 전
부모
커밋
93f6aeee4d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);