uniapp打电话

2021-07-16

前端

人不可能阻止指甲生长…同样的,人也不能压抑自己与生俱来的冲动!——吉良吉影

代码如下

1
2
3
uni.makePhoneCall({
phoneNumber: '114' //仅为示例
});

同样拥有成功、失败和完成的回调

1
2
3
4
5
6
uni.makePhoneCall({
phoneNumber: '114' //仅为示例
,success:res=>{ console.log(res); }
,fail:res=>{ console.log(res); }
,complete:res=>{ console.log(res); }
});