小程序
小游戏
企业微信
微信支付
扫描小程序码分享
wx.showToast之前调用wx.hideLoading()导致wx.showToast不显示;怎么解决
6 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
可以这样写,成对出现,
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
调用wx.hideLoading()不能立马调用wx.showToast,中间可以间隔几百毫秒。这种情况我这边只有在很老机型上偶尔出现过。
是会有这个bug的, 并且模拟器上无法复现, 只有真机才会出现, 建议将hideLoading写在showToast前面
android10都还用这问题
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),并详细描述下复现的流程。
提供可复现的代码片段
try {
wx.showLoading({
title: '正在验证',
})
const {msg, success} = await wx.cloud.callFunction({
...
wx.showToast({
title: msg,
icon: success ? 'success' : 'error',
}catch(err) {
console.log(err)
}finally {
wx.hideLoading()
}
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
可以这样写,成对出现,
调用wx.hideLoading()不能立马调用wx.showToast,中间可以间隔几百毫秒。这种情况我这边只有在很老机型上偶尔出现过。
是会有这个bug的, 并且模拟器上无法复现, 只有真机才会出现, 建议将hideLoading写在showToast前面
android10都还用这问题
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),并详细描述下复现的流程。
提供可复现的代码片段
try {
wx.showLoading({
title: '正在验证',
})
const {msg, success} = await wx.cloud.callFunction({
...
})
wx.showToast({
title: msg,
icon: success ? 'success' : 'error',
})
}catch(err) {
console.log(err)
}finally {
wx.hideLoading()
}