如何在react native中从url打开特定屏幕

js81xvg6  于 2023-01-14  发布在  React
关注(0)|答案(2)|浏览(174)

我有一个pment网关在我的应用程序和我使用“react-native-inappbrowser-reborn”去支付网站。我怎么能去应用程序 Jmeter 板上成功付款?我一直试图实现它与深度链接,但无法做到这一点。在成功的支付浏览器打开这样的URL:http://**8.*1.9./successpage:
这是我在清单文件中的意图

<intent-filter>
<action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.BROWSABLE"/> <data android:scheme="stylon"/> <data android:scheme="https" android:host="**8.*1.**9.**/" /> <data android:scheme="http" android:host="**8.*1.**9.**/" /> 
</intent-filter>

这是我的导航容器:

<NavigationContainer ref={RootNavigation.navigationRef} linking={prefixes: ['stylon://', 'http://**8.*1.**9.**/'],}>
g9icjywg

g9icjywg1#

有两种方法可以通过url进行导航
1.通过链接
1.通过网络查看

jtoj6r0c

jtoj6r0c2#

react-navigation的官方文档中有一个关于这个特性的条目,带有深度链接。

相关问题