ionic3如何拨打电话?

发布于 5 年前 作者 songsunli 2837 次浏览 来自 分享

ionic3开发的混合app如何拨打电话呢? 非常简单,下面一句话就可以调起电话。 这个同样适用于微信公众号中

<a href="tel:xxx" ></a>

如果部分混合app没法拨打电话请参考下面配置方法。

在html里面直接使用不能拨打电话的解决方法如下:

1. 下载cordova的访问白名单插件 :

命令:cordova plugins add cordova-plugin-whitelist

2. 在config.xml里面添加 如下配置:

<content src = "index.html"/>

<plugin name = "cordova-plugin-whitelist" version="1" />

<access orgin = "*" />

<allow-intent href = "http://*/*" />

<allow-intent href = "https://*/*" />

<allow-intent href = "tel:*" />

<allow-intent href = "sms:*" />

<allow-intent href = "mailto:*" />

<allow-intent href = "geo:*" />

<platform name = "android">

<allow-intent href = "market:*" />

</platform>

<platform name = "ios" >

<allow-intent href = "itms:*" />

<allow-intent href = "itms-apps:*" />

<platform>
1 回复

可以试试

回到顶部