51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

uniapp打电话

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

代码如下

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

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

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

赞(0)
未经允许不得转载:工具盒子 » uniapp打电话