如何在React Native WebView中呈现安全的https URL

时间:2019-06-19 05:31:36

标签: javascript android react-native webview react-native-android

我正在尝试在本机Webview中加载安全的https URL,但其显示空白屏幕,并且在控制台中也不会引发任何错误。另外,在同一页面上,我还可以加载所有其他https URL,例如https://www.facebook.com/https://www.google.com/

我正在使用:

"react-native": "0.59.4"
<WebView 
  source={{ uri: 'https://example.com/login?user=xxxxxxxxxx&pass=xxxxxx'}}
  scalesPageToFit={true}
  style={{ height: 500, width: 500}}
  javaScriptEnabled={true}
  domStorageEnabled={true}
  startInLoadingState={true}
  ignoreSslError={true}
  onError={(err) => console.log('error', err)}
/>

它应该像在浏览器中一样加载网页。

0 个答案:

没有答案