React Native Linking getInitialURL()在android中不起作用

时间:2019-09-23 11:26:31

标签: react-native react-native-android deep-linking

我在React Native中使用链接进行深层链接。当我的应用程序处于后台时,我可以从侦听器方法获取深度链接URL。但是,当我从另一个应用程序打开我的应用程序时,链接getInitialURL()方法始终返回null。我正在使用React native v0.59.3。我尝试降级react-native版本,但是存在问题。希望有人帮忙。

我的代码

componentDidMount() {
  Linking.getInitialURL().then(url => {
    console.warn(url); //returns null
    this.handleURL(url);
  });

Linking.addEventListener("url", this.handleURL);
}

0 个答案:

没有答案