我正在 react-native WebView 中使用 Paytabs 支付链接设置在线支付。在支付网页中重定向时,它会显示一个 json 响应。有什么方法可以在我的 react-native App 中访问该响应?我已经尝试过 onMessage 和 onNavigationStateChange。
这是付款流程和我想在应用程序中获得的响应
renderContent() { return ( console.log("event",navEvent)} onMessage={(event)=> console.log("event",event)} style={{ flex: 1 }} />) }