测试代码:
wx.showLoading({
title: ‘提交中…’,
mask: true
})
setTimeout(()=>{
wx.hideLoading();
wx.showToast({
title: ‘提交成功’,
icon: ‘success’,
duration: 2000,
mask: true,
complete: function(res) {
setTimeout(()=>{
wx.navigateBack(1);
},2000);
}
});
},3000);
问题: wx.hideLoading()之后再showToast()没有任何效果,toast不会显示。