react-native-firebase通知警告

时间:2018-06-27 17:32:05

标签: react-native

Warning message,当我单击“发送的通知”时,我试图导航到特定屏幕。我正在使用基于FCM的通知的react-native-firebase。我正确地收到了通知。

这是我的代码-

firebase.notifications().getInitialNotification()
            .then((notificationOpen) => {
                if (notificationOpen) {
                    // App was opened by a notification
                    const data = notification.data

                    if (data.newComment) {
                        this.props.navigation.navigate('AddNewPost')
                    }
                }
            })
            .catch(err => {
                console.log(err)
            });

一旦收到正确的数据,我就可以正确导航。但是我收到警告黄框消息。

Possible Unhandled Promise Rejection (id:0);
Invariant Violation: Must navigateTo an object or a string

我不是什么意思吗?

这是错误吗? 还是被安全忽略?

0 个答案:

没有答案