shilin 4 سال پیش
والد
کامیت
d432094095
3فایلهای تغییر یافته به همراه11 افزوده شده و 8 حذف شده
  1. 9 6
      public/websocket.js
  2. 1 1
      src/App.vue
  3. 1 1
      src/http.js

+ 9 - 6
public/websocket.js

@@ -1,23 +1,25 @@
 import Stomp from "stompjs";
 import store from '../src/store/index'
-var projectconfig = 'ws://192.168.10.22:8082/gyee-websocket'
+var projectconfig = 'ws://192.168.10.14:8082/gyee-websocket'
 // ============================一般使用的变量============================
 let number = 0;
 export const datainit = initialize;
 // ============================  大函数体   ============================
-function initialize() {
+function initialize(topic) {
   let adpClient = null;
   var url = projectconfig;
-  adpClient = Stomp.client(url);
+  // let socket = new SockJS(url);  // 这个地址要找你们后端
+  // adpClient = Stomp.over(socket);
+   adpClient = Stomp.client(url);
   adpClient.debug = null;
-  adpClient.connect({}, adpClient => connectCallBackSubscribe(adpClient), error => reconnect(error, adpClient));
+  adpClient.connect({topic:topic}, adpClient2 => connectCallBackSubscribe(adpClient), error => reconnect(error, adpClient));
 }
 // 断线重连
 function reconnect(error, adpClient) {
   //连接失败时再次调用函数
   number++;
   adpClient.connected = false;
-  clearTimeout(setTimeout(initialize(), 1000 * 5));
+  clearTimeout(setTimeout(initialize('/topic/popup'), 1000 * 5));
   debugX("DataAdapter reconnect:" + number + " 次");
   return;
 }
@@ -25,13 +27,14 @@ function reconnect(error, adpClient) {
 function connectCallBackSubscribe(adpClient) {
   number = 0;
   adpClient.connected = true;
-  adpClient.subscribe('topic/popup', stompMessage => reflexWindturbineBasicInformation(stompMessage));
+  adpClient.subscribe('/topic/popup', stompMessage => reflexWindturbineBasicInformation(stompMessage));
 }
 // ============================  解析函数体  ============================
 function reflexWindturbineBasicInformation(stompMessage) {
   var newdata = JSON.parse(stompMessage.body);
   store.dispatch('getupdate', newdata);
   console.log(newdata)
+  
 }
 // ============================  其他  ============================
 function debugX(text) {

+ 1 - 1
src/App.vue

@@ -125,7 +125,7 @@ export default {
     };
   },
   created() {
-    // datainit();
+     //datainit("/topic/popup");
   },
   methods: {
     handleSelect(key, keyPath) {},

+ 1 - 1
src/http.js

@@ -2,7 +2,7 @@ import axios from 'axios'
 import Vue from 'vue'
 import router from './router'
 axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';
-
+axios.defaults.withCredentials = true
 const http = axios.create({
   baseURL: process.env.VUE_APP_API_URL || '/api/',
   // baseURL: process.env.VUE_APP_API_URL,