91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

eventbus如何在Angular5中使用

發布時間:2021-04-07 17:19:34 來源:億速云 閱讀:301 作者:Leah 欄目:web開發

這篇文章將為大家詳細講解有關eventbus如何在Angular5中使用,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

1.package.json中

"dependencies": {
   ...
  "vertx3-eventbus-client": "3.5.2",
 },

然后  npm install,或者:

npm install vertx3-eventbus-client@3.5.2

2.angular-cli.json中

 "scripts": [
     ...
    "../node_modules/vertx3-eventbus-client/vertx-eventbus.js"
   ],

3.創建一個eventbus.service.ts用來通信

導入eventbus:

import { EventBus } from 'vertx3-eventbus-client';

聲明eventbus:

declare var EventBus: any;

4.創建eventbus實例,監聽接口以及發送消息

//創建實例
var eb = new EventBus('http://localhost:8080/eventbus');

eb.onopen = function() {
 //注冊監聽器用來接受消息
 eb.registerHandler('some-address', function(error, message) {
  console.log('received a message: ' + JSON.stringify(message));
 });

 //發送消息
 eb.send('some-address', {name: 'tim', age: 587});

}

更多信息請參考這里 https://vertx.io/docs/vertx-web/java/

注:

對于需要發送消息來接受的消息,需要先監聽,然后再發送消息。
對于一直推送的消息,不需要發送。

代碼實例如下:

RegisterHandler(key, id, callback) {
    const address = '***.' + key + '.' + id;
    if (typeof (this.eventBus[key]) === 'undefined' || !this.eventBus[key]) {
      this.eventBus[key] = new EventBus(environment.eventbusUrl);
    }
    if (this.eventBus[key].state === EventBus.OPEN) {
      this.eventBus[key].registerHandler(address, callback);
    } else {
      const $this = this;
      this.eventBus[key].onopen = function () {
        $this.eventBus[key].registerHandler(address, callback)
      }
    }
  }

Send(key, id) {
    var data = '';
    const address = ***.' + key + '.' + id;
    if (typeof (this.eventBus[key]) === 'undefined' || !this.eventBus[key]) {
      this.eventBus[key] = new EventBus(environment.eventbusUrl);
    }
    if (this.eventBus[key].state === EventBus.OPEN) {
      this.eventBus[key].send(address, data)
    } else {
      const $this = this;
      this.eventBus[key].onopen = function () {
        $this.eventBus[key].send(address, data)
      }
    }
  }

closeEventBus(key) {
    if (typeof (this.eventBus[key]) !== 'undefined' && this.eventBus[key] && this.eventBus[key].state === EventBus.OPEN) {
      this.eventBus[key].close();
    }
    this.eventBus[key] = null;
}

關于eventbus如何在Angular5中使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

莫力| 房产| 松潘县| 海兴县| 杭锦后旗| 盐源县| 蓬莱市| 宣城市| 遂平县| 九龙城区| 荆门市| 大姚县| 磐石市| 南乐县| 鹤庆县| 洛川县| 兴安盟| 天长市| 安岳县| 宁夏| 宁南县| 阿瓦提县| 普定县| 西畴县| 湘潭县| 清新县| 广昌县| 桐城市| 神木县| 日照市| 新和县| 鄢陵县| 永昌县| 班玛县| 张家界市| 巴彦淖尔市| 津市市| 吴江市| 留坝县| 潜山县| 株洲县|