美文网首页
React Native WebView加载Html乱码

React Native WebView加载Html乱码

作者: 双轮自行车 | 来源:发表于2018-11-28 15:12 被阅读0次
安卓

今天在做webview加载Html页面的时候,本来没有什么问题,但是发现安卓上有的机型显示不了中文,即使将模拟器的系统语言修改为中文也没有用,这里记录一下解决方法:

<WebView style={{flex:1}}originWhitelist={['*']}

startInLoadingState={true}

javaScriptEnabled={true}

automaticallyAdjustContentInsets={true}

useWebKit={true}

source={{html: tem,baseUrl:''}}/>

即使没有baseUrl,也要加上这个属性,写上空串,问题解决!

相关文章

网友评论

      本文标题:React Native WebView加载Html乱码

      本文链接:https://www.haomeiwen.com/subject/cloaqqtx.html