wx.hideloading 还是会关闭 wx.showToast
发布于 7 年前 作者 weilong 8627 次浏览 来自 问答

例如 :

// 之前有个 wx.showLoading({})


wx.request({

 
    success (res) => {
  

        wx.showToast({

title: 'hello',

duration: 2000000

})

    },

   complete () {

       wx.hideLoading({})

   }

 
})

请求成功后, toast不会显示,或者一闪而过。

2 回复

我是考虑,出错的话, 页面的loading就会 一直转

complete里面的 wx.hideLoading({})去掉

回到顶部