冷笑天
冷笑天
  • 发布:2025-02-28 17:24
  • 更新:2025-03-03 09:09
  • 阅读:123

发现在微信小程序里面uni.hideLoading()能直接把uni.showToast()提示杀掉,这个是不是BUG?

分类:uni-app
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?

2025-02-28 17:24 负责人:无 分享
已邀请:
蔡cai

蔡cai

把noConflict设置为true,官网:https://developers.weixin.qq.com/miniprogram/dev/api/ui/interaction/wx.hideLoading.html

  • 蔡cai

    这个是微信小程序那边新加的属性,感觉这样适配有问题,微信官方应该默认为true

    2025-03-03 09:10

要回复问题请先登录注册