如何在React Native应用上设置前台Firebase通知侦听器?

时间:2019-07-24 08:34:12

标签: android firebase react-native firebase-cloud-messaging react-native-firebase

我刚刚开始学习本机操作,目前正在尝试使用Firebase云消息传递“抬起头来的通知”,当应用程序在后台运行时,通知仍然有效,但我仍然不知道如何制作在前台工作,这是我到目前为止所做的:

import type {Notification} from 'react-native-firebase';
....
async componentDidMount(){
     firebase.notifications().android.createChannel(channel);
     this.notificationListener = firebase.notifications().onNotification((notification: Notification)=>{
        console.log("notification =>" + notification);
    });
}

componentWillMount(){
     this.notificationListener();
}
....

console.log甚至没有运行,感谢您的帮助!

0 个答案:

没有答案