数据库信息调不到,不知道是否是微信小程序的新版本的原因,代码都检查过到,URL网络访问有JSON数据



onShow: function () {
var that = this;
wx.request({
url: 'http://localhost:8080/springboot/superadmin/listarea',
method: 'GET',
data: {},
success: function (res) {
var list = res.data.areaList;
if (list == null) {
var toastText = '数据回显失败' + res.data.errMsg;
wx.showToast({
title: 'toastText',
icon: '',
duration: 2000
});
} else {
that.setData({
list: list
});
}
}
})
},

 
                                
                             
                             
                             
                             
                            