我刚刚开始学习本机操作,目前正在尝试使用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
甚至没有运行,感谢您的帮助!