ionic 4中的FirebaseMessaging用于连接Firebase通知
this.firebaseMessaging.onMessage('page_view', {page: "dashboard"})
.then((res: any) => console.log(res))
.catch((error: any) => console.error(error));
this.firebaseMessaging.onBackgroundMessage('page_view', {page: "dashboard"})
.then((res: any) => console.log(res))
.catch((error: any) => console.error(error));
将firebase连接到onBackgroundMessage。 获取wtsap呼叫通知之类的事件
Blockquote