uni.showLoading({
title: "加载中",
});
ServerApi.request("/Save.ashx")
.then((res) => {
if (res.code == 0) {
uni.showToast({
title: "提交成功",
icon: "success",
duration: duration,
});
} else {
uni.showToast({
title: res.error,
icon: "error",
duration: duration,
});
}
})
.finally(() => {
uni.hideLoading();
});
提交数据,本来想做一个提交中的提示,结果发现uni.hideLoading();直接把提交成功的提示也更隐藏了,在微信小程序真机里面就这个毛病;
特别是有错误信息需要给用户显示的时候,错误信息res.error还没有显示出来,直接就被uni.hideLoading();把提示给隐藏了!
这个是不是BUG?
蔡cai
这个是微信小程序那边新加的属性,感觉这样适配有问题,微信官方应该默认为true
2025-03-03 09:10