React native android端webview中文乱码解决

来源:互联网 发布:北大青鸟软件学习 编辑:程序博客网 时间:2024/05/22 01:50

平时在工作中,遇到android端webview部分机子出现中文乱码,不管是怎么设置head都无效,经过很久

才解决,这里要特别感谢好朋友silley解决


这个问题,特此记录下这个问题,供大家参考.

之前:

<WebView style={{ width: width - 60, height: 310 * KAdaptionHeight }}                  scalesPageToFit={isTrue}                  bounces={false}                  source={{ html: content.content }}// 部分机子出现乱码                />

解决:

<WebView style={{ width: width - 60, height: 310 * KAdaptionHeight }}                  scalesPageToFit={isTrue}                  bounces={false}                  source={{ html: content.content, baseUrl: '' }}// baseUrl: ''中文乱码解决                />


原创粉丝点击