微信小程序调用json数据汉字乱码的解决方法:接口获取数据后如果有中文编码必须使用decodeURI或decodeURIComponent解码
在success中将数据按下面的方法处理一下即可,
success: function (res) {
var news= JSON.parse(decodeURIComponent(JSON.stringify(res.data)));
that.setData({news: news})
}