gpt4 book ai didi

javascript - react native iOS : How to listen to incoming links and handle them when the app is closed?

转载 作者:行者123 更新时间:2023-11-30 11:12:26 25 4
gpt4 key购买 nike

我正在尝试将我读过的教程应用到我的应用程序中。我已经设置了一种方法来监听传入的 url 并处理它们。

componentDidMount() {
Linking.addEventListener('url', this.handleOpenURL);
}
componentWillUnmount() {
Linking.removeEventListener('url', this.handleOpenURL);
}
handleOpenURL(event) {
console.log(event.url);
const route = e.url.replace(/.*?:\/\//g, '');
// do something with the url, in our case navigate(route)
}

如果应用程序在后台运行,这会很有效。但是,我遇到的问题是当应用程序关闭时,handleOpenURL 方法没有被调用。我不确定我是否错过了一步。另一种可能性是我可能必须在其他地方添加事件监听器。不确定该怎么做。

最佳答案

用这个解决了

 Linking.getInitialURL().then((url) => {
if (url) {
AppListeners.handleOpenUrl({ url });
}
});

关于javascript - react native iOS : How to listen to incoming links and handle them when the app is closed?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53144890/

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