ionic调用手机系统的拨打电话
Posted zhichong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ionic调用手机系统的拨打电话相关的知识,希望对你有一定的参考价值。
android调用如下:
在config.xml中添加
<access origin="tel:*" launch-external="yes" />
在页面上
<button (click)="call()">拨打电话</button> //href中需要填写tel:手机号码
在ts
call(){
document.location.href="tel:17724278927"
}
以上是关于ionic调用手机系统的拨打电话的主要内容,如果未能解决你的问题,请参考以下文章