wx.hideLoading会影响到wx.showToast
如:
wx.showLoading({
title: ‘请求中’
});
setTimeout(() => {
wx.hideLoading();
wx.showToast({
title: ‘获取成功’,
icon: ‘success’
});
}, 2000);
loading关闭后,toast刚显示就关闭了。showToast设置duration也无效。