Ionic 實現電話功能

weixin_33968104發表於2017-04-13

1.關於打電話在html中可以很方便的實現撥打電話先在config.xml中新增:

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

5221572-8b0ae7e7aacd743a.png

2.然後在html中這樣寫:

<a href="tel:10086">撥打10086</a>

3.如果編譯執行的時候報錯


5221572-4611e8812915bccd.png

則在config.xml中新增程式碼

<allow-navigation href="*"/>

發簡訊的外掛

關於發簡訊,是使用的ng-cordova的外掛$cordovaSMS:

cordova plugin add https://github.com/cordova-sms/cordova-sms-plugin.git

記得相應的要在app.js中依賴ng-cordova,在傳送簡訊的控制器中依賴$cordovaSms。

相關文章