|
@@ -10,7 +10,7 @@ export default class MessageBridge {
|
|
|
this.register = this.register.bind(this);
|
|
|
this.unregister = this.unregister.bind(this);
|
|
|
this.onmessage = this.onmessage.bind(this);
|
|
|
- this.getActions = this.getActions(this);
|
|
|
+ this.getActions = this.getActions.bind(this);
|
|
|
|
|
|
this.observers = new Array();
|
|
|
|
|
@@ -29,7 +29,7 @@ export default class MessageBridge {
|
|
|
|
|
|
/* 获得消息 */
|
|
|
onmessage(msg) {
|
|
|
- if(msg.headers.data-type && msg.headers.data-type=="heartbeat"){
|
|
|
+ if(msg.headers["data-type"] && msg.headers["data-type"]=="heartbeat"){
|
|
|
console.log("获得心跳包!");
|
|
|
return;
|
|
|
}
|
|
@@ -72,6 +72,7 @@ class WebSocket {
|
|
|
this.onerror = this.onerror.bind(this);
|
|
|
this.connectCallBackSubscribe = this.connectCallBackSubscribe.bind(this);
|
|
|
this.send = this.send.bind(this);
|
|
|
+ this.connect=this.connect.bind(this);
|
|
|
|
|
|
this.onmessage = onmessage;
|
|
|
this.url = url;
|
|
@@ -87,9 +88,6 @@ class WebSocket {
|
|
|
|
|
|
/* 连接 */
|
|
|
connect() {
|
|
|
- if (this.client != null) {
|
|
|
- this.client.close();
|
|
|
- }
|
|
|
console.log(`正在连接websocket [${this.url}]`)
|
|
|
this.client = Stomp.client(this.url);
|
|
|
this.client.connect("", "", this.connectCallBackSubscribe, this.onerror);
|
|
@@ -102,6 +100,7 @@ class WebSocket {
|
|
|
|
|
|
/* 注册 */
|
|
|
connectCallBackSubscribe() {
|
|
|
+ console.log(`注册消息${this.settings}`)
|
|
|
for (var index in this.settings) {
|
|
|
this.client.subscribe(this.settings[index], frame => this.onmessage(frame));
|
|
|
}
|