您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關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中使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。