收藏
回答

wx.makePhoneCall 在安卓手机上出发打电话 回调函数没触发?

调用打电话api 需要在成功毁掉函数埋点 但现在成功函数没触发

回答关注问题邀请回答
收藏

2 个回答

  • 社区技术运营专员--阳光
    社区技术运营专员--阳光
    08-22

    是在企微环境下吗?微信内正常吗

    08-22
    有用
    回复 4
  • 青冘人
    青冘人
    08-20
            wx.makePhoneCall({
              phoneNumber: customerPhone.toString(),
              success: (res) => {
                if (res.errMsg) {
                  this.queryCallStatus(customerWid);
                }
              },
              fail: (err) => {
                const { errMsg } = err;
                if (errMsg != 'makePhoneCall:fail cancel') {
                  wx.showToast({
                    title: '打开会话失败',
                    icon: 'none',
                    duration: 2000,
                  });
                }
              },
              complete: () => { },
            });
    
    08-20
    有用
    回复
登录 后发表内容