uniapp中的下拉框中文,在hbuilder中调试无误,发行到微信开发者工具中出现乱码?
<!-- 下拉列表html -->
<picker :value="index" mode="selector" :range="provinceList" range-key="地区"
@change="onProvinceChange">
<view class="picker">
当前选择:{{ address}}
</view>
</picker>
js-------
provinceList: ['北京','天津','河北','山西','内蒙古','辽宁','吉林','黑龙江','上海','江苏','浙江','安徽','福建','江西','山东','河南','湖北','湖南','广东','广西','海南','重庆','四川','贵州','云南','西藏','陕西','甘肃','青海','宁夏','新疆'], // 省份列表
// 省份选择改变事件
onProvinceChange(event) {
const index = event.detail.value;
this.address = this.provinceList[index];
this.getOilPrice();
}