Events

一、Event是在程序中一个发布-订阅风格的事件系统用来发送和响应应用程序级别的事件。

import { Events } from 'ionic-angular';

constructor(public events: Events) {}

// 第一个页面(当user创建时)
function createUser(user) {
  console.log('User created!')
  events.publish('user:created', user);
}

// 第二个页面(监听user创建事件)
events.subscribe('user:created', (userEventData) => {
  // userEventData 是一个数组, so grab our first and only arg
  console.log('Welcome', userEventData[0]);
});


二、成员变量

1、subscribe(topic, handler)

事件订阅的主题,事件将触发他提供的方法。

topic  string  订阅的主题

handler  function  事件处理方法


2、unsubscribe(topic,handler)

取消签署的主题,你的handler将不再接收publish到主题事件

会返回true如果handler被移除


3、publish(topic, eventData)

提交一个event给指定的topic

你可能感兴趣的:(Ionic2)