Firebase上的.setAutoCancel(true)获取未定义错误不是函数

时间:2019-04-06 11:38:51

标签: javascript firebase react-native firebase-cloud-messaging firebase-notifications

这是我的通知代码

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)添加到代码中,就像上面的代码一样。 但是我得到了错误

enter image description here

请帮助,我对React本机很陌生。非常感谢

0 个答案:

没有答案