小程序页面中的toast一闪而过的问题

问题:请求后台接口后,接口返回错误,前台提示错误信息的toast一闪而过,设置了1秒的延迟消失。

原因:
在公共的请求中加了loading, 请求前调用了wx.showLoading,结束后调用了 wx.hideLoading,
当后台返回错误的时候,有调用了 wx.showToast ;导致页面中同时显示了wx.showLoading 和 wx.showToast,所以loading关闭的时候把toast也关闭了。

解决方法:
在调用 wx.showToast 之前先调用wx.hideLoading;

使用原则:
wx.showLoading 和 wx.showToast 同时只能显示一个
wx.showLoading 应与 wx.hideLoading 配对使用

你可能感兴趣的:(技术分享)