获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
我加了个 setTimeout 搞定了(#源自 @o0o有脾气的酸奶 的回答) Object.defineProperty(wx, 'showToast', { configurable: true, enumerable: true, writable: true, value(obj) { if (obj.hideLoading) { wx.hideLoading(); delete obj.hideLoading; setTimeout(() => { showToast.call(this, obj); }, 500); } else { showToast.call(this, obj); } } })
showLoading与hideLoading的使用能不能不影响showToast?wx.showLoading与wx.hideLoading()的使用会影响wx.showToast的使用,导致在真机调试上出现一闪而过现象
2020-03-02