如果用户点击手机上的链接,如果安装了移动应用程序,我正在尝试处理该链接。我想将浏览器中的 url 传递给应用程序并在 webview 中打开它。
例如,如果单击“myapp://something?=stringParam”。这在 React-Native 中可行吗?如果是,我如何读取发送的数据?
也许是来自链接模块的 getInitialURL?
是的,您可以使用 Linking API 做到这一点。
componentDidMount() {
const url = Linking.getInitialURL()
.then((url) => {
if (url) {
console.log('Initial url is: ' + url)
}
}).catch(err => console.error('An error occurred ', err))
}
要在 Android 上启用它,您必须关注 these steps首先。
关于android - React-Native:从浏览器打开应用程序时传递数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43538098/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |