收藏
回答

真机报错hideLoading:fail:toast can't be found,模拟器正常?

// index.js
// 获取应用实例
const app = getApp()
function delay(time{
  return new Promise(resolve => {
    setTimeout(() => {
      resolve()
    }, time)
  })
}
async function test1() {
  wx.showLoading({
    title'loading1'
  })
  await delay(4000)
  wx.hideLoading()
}
async function test2() {
  wx.showLoading({
    title'loading2'
  })
  await delay(2000)
  wx.hideLoading()
}
async function test() {
  test1()
  await delay(1000)
  test2()
}
Page({
  data: {},
  bindViewTap() {
    test()
  }
})


上述代码在开发工具不会报错,但是真机会报这样的错误`MiniProgramError{"errMsg":"hideLoading:fail:toast can't be found"}`。

代码片段:https://developers.weixin.qq.com/s/thI6KAm97mIK

最后一次编辑于  2023-05-30
回答关注问题邀请回答
收藏

1 个回答

  • Demons
    Demons
    2023-05-29

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2023-05-29
    有用
    回复 1
    • 2023-05-30
      已补充代码片段
      2023-05-30
      回复
登录 后发表内容