制作 Phone 调用 Ionic 应用程序

Making Phone Call Ionic App

我在视图中使用此代码:

<a href="tel:{{doc.emergency}}" class="button phone button-full" >Phone Call</a>

而且我无法拨打电话。 这是我的 config.xml

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

对我来说,以下作品:

<access origin="tel:*" launch-external="yes"/>
<allow-intent href="tel:*" />
<allow-navigation href="tel:*" />

有人问了类似的问题 here

尝试使用本机插件:

https://ionicframework.com/docs/native/call-number/

您可以创建一个接收 phone 数字作为参数的函数。