菜鸟教程小白 发表于 2022-12-13 01:09:13

android - React-Native:从浏览器打开应用程序时传递数据


                                            <p><p>如果用户点击手机上的链接,如果安装了移动应用程序,我正在尝试处理该链接。我想将浏览器中的 url 传递给应用程序并在 webview 中打开它。</p>

<p>例如,如果单击“myapp://something?=stringParam”。这在 React-Native 中可行吗?如果是,我如何读取发送的数据? </p>

<p>也许是来自链接模块的 getInitialURL?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>是的,您可以使用 Linking API 做到这一点。</p>

<pre><code>componentDidMount() {
const url = Linking.getInitialURL()
.then((url) =&gt; {
    if (url) {
      console.log(&#39;Initial url is: &#39; + url)
    }
}).catch(err =&gt; console.error(&#39;An error occurred &#39;, err))
}
</code></pre>

<p>要在 Android 上启用它,您必须关注 <a href="https://developer.android.com/training/app-indexing/deep-linking.html#adding-filters" rel="noreferrer noopener nofollow">these steps</a>首先。</p></p>
                                   
                                                <p style="font-size: 20px;">关于android - React-Native:从浏览器打开应用程序时传递数据,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/43538098/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/43538098/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: android - React-Native:从浏览器打开应用程序时传递数据