1、需求描述

在ionic项目用调用手机的打电话功能。开始还想找cordova和ng-cordova的插件那,现在H5实现起来特别方便。

2、准备

在cordova中所有的URL Schemes 都是服从于白名单的,所以要现在项目config.xml中添加

<access origin="tel:*" launch-external="yes" />

Making a Phone Call from Within PhoneGap in Android and iOS

3、代码实现

①html代码直接写就可以了

<a href="tel:15210203452">打电话</a>
<a href="tel:10086">打10066</a>

②在controller中实现也就一句话

$scope.callPhone=function(){
$window.location.href="tel:10085";
}

4、扩展阅读

① iOS的实现需要借助插件,具体参照链接资料。 
http://rickluna.com/wp/2012/02/making-a-phone-call-from-within-phonegap-in-android-and-ios/

手持移动端特殊链接:打电话,发短信,发邮件

05-11 15:34