我们可以在 react-native-webview 的任何参数中发送数据内容吗?我有一个 web 视图,我想在其中发送路径。此路径将被发送到外部 html 文件。有什么方法或任何参数可以让我给出将其定向到存储在 android-assets 中的 html 文件的路径?
<WebView
source={{htmlData}}
originWhitelist={["*"]}
domStorageEnabled={true}
startInLoadingState={true}
javaScriptEnabled={true}
scalesPageToFit={true}
allowFileAccess={true}
injectedJavaScript={injectedToHtml()}
ref={(ref)=> { this.webViewRef = ref }}
onMessage={this.onMessage} />