小程序 wx.showToast 延时跳转

时间:2020-02-25 18:28:38   收藏:0   阅读:96
wx.showToast({
        title: ‘成功‘,
        icon: ‘success‘,
        duration: 2000,
        success:function(){
          console.log(‘haha‘);
          setTimeout(function () {
            //要延时执行的代码
            wx.switchTab({
              url: ‘../user/user‘
            })
          }, 2000) //延迟时间
        }
      })

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!