小程序 wx.showToast 延时跳转

Posted 。。握草。。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序 wx.showToast 延时跳转相关的知识,希望对你有一定的参考价值。

wx.showToast({
        title: ‘成功‘,
        icon: ‘success‘,
        duration: 2000,
        success:function(){
          console.log(‘haha‘);
          setTimeout(function () {
            //要延时执行的代码
            wx.switchTab({
              url: ‘../user/user‘
            })
          }, 2000) //延迟时间
        }
      })

 

以上是关于小程序 wx.showToast 延时跳转的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序 延时执行 延时跳转

微信小程序 延时执行 延时跳转

小程序各种功能代码片段整理---持续更新

微信小程序使用wx.showtoast后面代码不执行

微信小程序文档

小程序wx.showToast()与wx.hideLoading()冲突的问题