gpt4 book ai didi

ios - Expo.Notifications.addListener() 未触发(iOS 独立应用程序)

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:28:18 25 4
gpt4 key购买 nike

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

addListener() 放在 componentDidMount() 函数中。

Expo.Notifications.addListener(this.handleNotification);

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

最佳答案

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

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

关于ios - Expo.Notifications.addListener() 未触发(iOS 独立应用程序),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54360699/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com