gpt4 book ai didi

react-native - [React-Native-Firebase]如何删除 onMessage 存在事件?

转载 作者:行者123 更新时间:2023-12-05 01:00:58 25 4
gpt4 key购买 nike

我声明了一个 onMessage 函数来做一些事情。但是当我导航到另一个屏幕并想要删除 ComponentWillUnmount() 中的 FCM.onMessage() 时。我怎样才能删除它?

const rnfirebase = RNFirebase.initializeApp()

export const FCM = rnfirebase.messaging()

ComponentDidMount(){
FCM.onMessage((notif)=>{

//Do something

})

}
ComponentWillUnmount(){
//I want to remove here

}

最佳答案

如果您查看 docs onMessage 返回一个函数,如果控制台记录该函数,您将看到类似这样的内容

ƒ () {
return rnListener.remove();
}

因此,当您调用 onMessage 返回的函数时,它将停止监听,在您的情况下,代码将如下所示

const rnfirebase = RNFirebase.initializeApp()

export const FCM = rnfirebase.messaging()

componentDidMount(){
this.notificationListener = FCM.onMessage(notif=>{
//Do something
})
}

componentWillUnmount(){
this.notificationListener(); //This will remove the listener
}

关于react-native - [React-Native-Firebase]如何删除 onMessage 存在事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47935377/

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