Expo.Notifications.addListener()未启动(iOS独立应用)

时间:2019-01-25 07:23:48

标签: ios react-native notifications expo

我正在尝试在我的组件中使用Expo.Notifictions.addListener(在iOS独立构建中),但是即使成功接收到通知,它也不会触发。

addListener()位于componentDidMount()函数内部。

Expo.Notifications.addListener(this.handleNotification);

handleNotification = () => {
  this.setState({
    something: 3,
  });
};

1 个答案:

答案 0 :(得分:0)

您没有将回调添加到ur addListener函数中。

componentDidMount(){
    Notifications.addListener(notification => {
      console.log(notification);  
    });
}