react-native-webview Android 无法正确加载本地html文件(显示源代码)

炒沙作縻终不饱,缕冰文章费工巧。这篇文章主要讲述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文件(显示源代码)】  更换引入方式即可

    推荐阅读