1、在app.json加入
"networkTimeout": {
"request": 10000, // 请求超时时间设置
"downloadFile": 15000 // 文件下载超时设置
},
2、wx.request时如果超时会进入 fail方法
fail: function () {
wx.hideLoading();
wx.showModal({
title: '提示',
showCancel: false,
content: '请求超时!',
success: function () {}
})
}