小程序的开发环境,中文显示一切都正常,而使用手机预览时,中文确实乱码,请问怎么解决
使用的wx.request的get请求服务器的数据,返回的中文也是正常显示。
Page({
data: {
// threads: [],
},
onLoad: function () {
var that = this;
wx.request({
url: ‘https://www.ybhtest.club/1.php’,
header: {
// “content-type”: “applciation/json”,
// “charset”: “utf-8”
},
method: “GET”,
success: function (res) {
//console.log(res.data);
that.setData({
threads: res.data
})
},
fail: function (err) { console.log(err) },
complete: function () { }
})
}
})