react-native-webview Android 无法正确加载本地html文件(显示源代码)
Posted z102410
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react-native-webview Android 无法正确加载本地html文件(显示源代码)相关的知识,希望对你有一定的参考价值。
最近发现在开发环境下出现问题
将html页面复制到android/app/src/main/assets文件夹
source = Platform.OS === ‘ios‘ ? require(‘../Static.bundle/**html‘) : { uri: ‘file:///android_asset/**html‘, }; export default class webDetail extends Component { render() { return <WebView originWhitelist={[‘*‘]} source={source} />; } }
更换引入方式即可
以上是关于react-native-webview Android 无法正确加载本地html文件(显示源代码)的主要内容,如果未能解决你的问题,请参考以下文章
无法通过 react-native-webview 访问相机
有啥方法可以在 react-native-webview 中禁用 hapticFeedback
react-native-webview 如何注入 javascript?
React-Native-Webview:预期nodeHandle不为null