小程序拨打电话api报错makePhoneCall:fail cancel

源代码

   wx.makePhoneCall({
      phoneNumber: app.globalData.phoneNumber,
    })

  

 
小程序拨打电话api报错makePhoneCall:fail cancel

 

 

只需要在后面加上catch就可以解决这个报错

    wx.makePhoneCall({
      phoneNumber:app.globalData.phoneNumber,
    }).catch((e) => {
      // console.log(e)  //用catch(e)来捕获错误{makePhoneCall:fail cancel}
    })

  

小程序拨打电话api报错makePhoneCall:fail cancel

上一篇:Win10上Docker无法正常启动 出现install WSL2 kernel update的情况


下一篇:微信会员注册开发【带源码】:网页授权,得到code后在当前页面获取openid,js+php实现跨域请求