tt.makePhoneCall收藏我的收藏
收藏
我的收藏基础库 1.0.0 开始支持本方法,这是一个异步方法。
调用系统拨号能力。iOS 会拉起系统弹窗,用户需二次点击跳转到拨号页,Android 直接拉起拨号页并预填号码。部分行业小程序会增加隐私号能力,拨打方和接听方展示的都是虚拟号码。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 无 |
注意事项 |
|
支持沙盒 | 否 |
相关教程 | 无 |
语法
tt.makePhoneCall(options)
参数说明
options 为 object 类型,属性如下:
属性名 | 类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|---|
phoneNumber | string | -- | 是 | 电话号码,仅可包含数字 | 1.0.0 |
success | function | 否 | 接口调用成功的回调函数 | 1.0.0 | |
fail | function | 否 | 接口调用失败的回调函数 | 1.0.0 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) | 1.0.0 |
回调成功
object 类型,属性如下:
属性名 | 类型 | 说明 | 最低支持版本 |
---|---|---|---|
errMsg | string | "makePhoneCall:ok" | 1.0.0 |
回调失败
object 类型,属性如下:
属性名 | 类型 | 说明 | 最低支持版本 |
---|---|---|---|
errMsg | string | "makePhoneCall:fail" + 详细错误信息 | 1.0.0 |
错误码
errNo | errMsg | 说明 | 最低支持版本 |
---|---|---|---|
10201 | "makePhoneCall:fail privacy permission is not authorized" | 用户拒绝隐私协议授权,详见小程序隐私协议开发指南 | 3.19.0 |
10202 | "makePhoneCall:fail api scope is not declared in the privacy agreement" | 隐私协议中未定义相关隐私信息类型,详见配置隐私协议 | 3.19.0 |
10502 | "makePhoneCall:fail cancel" | 用户取消加密呼叫 | 3.30.0 |
10602 | "makePhoneCall:fail login canceled by user" | 用户取消登录,无法获取隐私号 | 3.30.0 |
21100 | "makePhoneCall:fail previous API call not finished yet" | 隐私号弹窗正在展示 | 3.30.0 |
扫码体验
请使用字节宿主APP扫码
代码示例
<button type="default" size="default" bindtap="tapMakePhoneCall"> 拨打电话 </button>
Page({ tapMakePhoneCall() { tt.makePhoneCall({ phoneNumber: "18888888888", success(res) { // 调用成功 makePhoneCall:ok console.log("调用成功", res.errMsg); }, fail(res) { // 调用失败 makePhoneCall:fail console.log("调用失败", res.errMsg); }, }); }, });
点击纠错