编程语言
首页 > 编程语言> > 小程序showToast一闪而逝的坑

小程序showToast一闪而逝的坑

作者:互联网

在模拟器上一切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回调  

 

 

标签:200,showToast,一闪,res,程序,hideLoading,毫秒,wx
来源: https://www.cnblogs.com/amtf-wah/p/14945608.html