react-native webview加载不出中文

加载不出中文的时候,需要加一个参数:baseUrl:''

<WebView 
style={{flex:1}}
originWhitelist={['*']}
startInLoadingState={true}
javaScriptEnabled={true}
automaticallyAdjustContentInsets={true}
useWebKit={true}
source={{html: tem,baseUrl:''}}
/>

另外还有一个坑:
本地网页读不了的时候需要添加:
originWhitelist={['*']}

猜你喜欢

转载自blog.csdn.net/weixin_33671935/article/details/86839491