在模拟器上一切ok
真机调试就一闪而逝
解决方案:
wx.hideLoading()
后边延迟200毫秒再执行 showToast //-------------------------------------- app.post('web/MemberBase/addMember', data, res => { wx.hideLoading() setTimeout(function () { if (res.errcode == 0) { wx.showToast({ duration: 1500, title: res.errmsg, icon: 'none' }) return } //... }, 200) }); //end-------------------------------- 也可以直接在wx.request中封装,延迟200毫秒再执行success回调