今天在做webview加载Html页面的时候,本来没有什么问题,但是发现安卓上有的机型显示不了中文,即使将模拟器的系统语言修改为中文也没有用,这里记录一下解决方法:
<WebView style={{flex:1}}originWhitelist={['*']}
startInLoadingState={true}
javaScriptEnabled={true}
automaticallyAdjustContentInsets={true}
useWebKit={true}
source={{html: tem,baseUrl:''}}/>
即使没有baseUrl,也要加上这个属性,写上空串,问题解决!
网友评论