打开深层链接后,getInitialLink返回NULL值

时间:2018-12-15 11:28:32

标签: javascript firebase react-native react-native-ios firebase-dynamic-links

我正在开发一个React Native应用,该应用应打开一个Firebase动态链接。我可以使用firebase API创建动态链接,但是当打开链接并记录应用程序来自链接打开时的天气时,它只会返回NULL值。

我使用这种方法:

 componentWillMount() {
    firebase.links()
    .getInitialLink()
    .then((url) => {
        if (url) {
            Alert.alert("Opened from link")// app opened from a url
        } else {
          Alert.alert("Not opened linkes") // app NOT opened from a url
        }
    });
  } 

有人可以检查一下我在做什么错吗?

0 个答案:

没有答案