0
私のionic 3アプリでプッシュ通知FCMを実装しましたが、かなり表示したいと思います。今のところ の場合は、通知を受け取ったときに警告を表示します。私はあなたがこのためにローカル通知を使用することができますイオン表示でプッシュ通知を表示3
ionViewDidLoad() {
FCMPlugin.onNotification(function (data) {
if (data.wasTapped) {
//Notification was received on device tray and tapped by the user.
alert(data.message);
} else {
//Notification was received in foreground. Maybe the user needs to be notified.
alert(data.message);
}
});
FCMPlugin.onTokenRefresh(function (token) {
alert(token);
});
}