微信小程序調用json數據漢字亂碼的解決方法:接口獲取數據后如果有中文編碼必須使用decodeURI或decodeURIComponent解碼
在success中將數據按下面的方法處理一下即可,
success: function (res) {
var news= JSON.parse(decodeURIComponent(JSON.stringify(res.data)));
that.setData({news: news})
}