我正在以react-native设置WebView,在其中我读取了index.html
文件。该文件在iOS中显示,但在Android中不显示。我需要一个通讯链接,该链接也应在Android中读取。
我尝试过
javascriptenabled = {true}
它不起作用。
react-native-webview版本:5.0.1
<WebView
source={{ uri: 'file://' + '../../ICFPackage/index.html' }}
originWhitelist={["*"]}
domStorageEnabled={true}
startInLoadingState={true}
javaScriptEnabled={true}
allowFileAccess={true} />