如何点击拨打Ionic Ionic?

时间:2016-12-30 14:41:14

标签: android ios iphone ionic-framework

我尝试过这种方法,它在Android中完全正常工作,但在IOS中却没有。

public static void SomeCustomSort<T>(this List<T> list, string item) 
  where T: ISortable, ICustomInterface

在我的config.xml文件中

<a href="tel: 1111111">Call</a>

以上方法在真实设备中测试,它只适用于android,有没有其他方法可以使它在IOS中工作

4 个答案:

答案 0 :(得分:1)

使用以下代码使其正常工作

<a href="tel:number" class="button button-positive">Call me</a>

答案 1 :(得分:1)

此方法适用于IOS

<div onclick="window.open('tel:7795713372', '_system', 'location=yes')">Call me</div>

您还需要安装cordova inapp browser插件。并且需要通过添加whitelist插件来whitelist config.xml中的请求。

答案 2 :(得分:1)

要使您的代码在IOS上工作,您需要在config.xml中添加

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

执行此操作会破坏android上的功能,因此请务必将其添加到

<platform name="ios">

答案 3 :(得分:0)

要使用IOS,您需要在config.xml中添加

in .js window.open('tel:'+ number,'_ system`);