tt.makePhoneCall
2020-02-12 11:38 更新
基础库 1.0.0 开始支持本方法。
拨打电话。
参数
Object 类型,属性如下:
属性 | 类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|---|
phoneNumber | string | 是 | 电话号码 | 1.0.0 | |
success | function | 否 | 接口调用成功的回调函数 | 1.0.0 | |
fail | function | 否 | 接口调用失败的回调函数 | 1.0.0 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) | 1.0.0 |
代码示例
tt.makePhoneCall({
phoneNumber: "18888888888",
success(res) {
console.log(`makePhoneCall调用成功${res}`);
},
fail(res) {
console.log(`makePhoneCall调用失败`);
}
});
以上内容是否对您有帮助:
更多建议: