微信小程序之wx.showToast 延时跳转

官方文档:https://developers.weixin.qq.com/miniprogram/dev/api/wx.showToast.html

	var user = app.globalData.users;
    wx.request({
      url: serverUrl + '/user_relieve.action',
      data: {
        uid: user.uid
      },
      header: header,
      success(data) {
        wx.showToast({
          title: '解绑成功!请重新绑定账户!',
          icon: 'none',
          duration: 1000, //弹出提示框时长
          mask: true,
          success(data) {
            setTimeout(function () {
              //要延时执行的代码
              wx.navigateTo({
                url: '../login/login'
              })
            }, 1000) //延迟时间
          }
        })
      }
    })

效果为:先弹出提示信息,然后等待一秒后跳转到指定路径下。
wx.navigateTo是不会关闭当前页的,也就是说你跳转之后,点返回依然可以返回这个页面,如果想先关闭当前页再跳转的话,可以用wx.redirectTo

你可能感兴趣的:(微信小程序开发)