问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug wx.hideLoading(); 客户端 6.7.3 2.3.1
工具显示正常,客户端不正确,hideLoading把toast也关掉了
wx.showLoading({
title: '处理中...',
mask: true
});
wx.request({
url: '',
method: 'POST',
header: {
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8'
},
data: {
xx:'xx'
},
success: function success(res) {
wx.showToast({
title: 'xx',
icon: 'success',
duration: 2000,
mask:true,
complete: function complete(res){
setTimeout(function(){
wx.navigateBack({
delta:1
})
},2000);
}
});
},
fail: function fail(res){
wx.showToast({
title: 'xx',
duration:2000,
icon: 'none',
mask: true
})
},
complete: function complete(res){
wx.hideLoading();
}
微信小程序开发问题解答
微信小程序开发者回答:
官方怎么都不修复这个呢
微信小程序开发者回答:
success和fail第一件事情就hideloading好了
微信小程序开发者回答:
明明可以能只写一个的,又清晰,偏偏要写两个,而且这个问题存在很久了
本文网址:http://www.91bianli.com/kaifazhinan/77152.html