这是我的通知代码
const notification = new firebase.notifications.Notification()
.android.setChannelId("QuanLy")
.setSound("default")
.setAutoCancel(true)
.android.setSmallIcon("ic_launcher");
按下按钮
onPressSave = () => {
if (alert.length<0) return this.inputAlertView.shake(800);
const { name, alertTime} = this.state;
notification.setTitle(name);
firebase.notifications().scheduleNotification(notification, {
fireDate: alertTime.getTime()
});
this.goBack();
};
但是,单击通知栏后,通知并没有消失。因此,我将.setAutoCancel(true)
添加到代码中,就像上面的代码一样。
但是我得到了错误
请帮助,我对React本机很陌生。非常感谢