如何在没有重定向到离子框架中的拨号盘的情况下自动点击电话?

时间:2016-04-03 04:17:16

标签: android ionic-framework

<ion-content>
<div class="item item-button-right ng-click="CallingTel({{user.phone1}})">
<h2><b>Mobile No.</b></h2>
9999999999
<button class="button button-positive">
<i class="icon ion-ios-telephone" ></i></button>
</div></ion-content>

上面的代码片段来自HTML页面,其中有电话呼叫按钮。

下面的代码片段解释了电话呼叫功能的功能。

angular.module('starter.PhoneController',[])
.controller('PhoneCtrl',function($state,$scope,$rootScope)
              {
                $rootScope.home = true;
                $rootScope.telnumber1 = " 9999999999";
                $scope.CallingTel = function(tel) {
                    window.location.href = 'tel:'+ $rootScope.telnumber1;
                  }
             });

我甚至在<access origin="tel:*" launch-external="yes" />中添加了“config.xml”代码。任何人都可以给我解决方案如何在不显示拨号盘的情况下自动绕过呼叫?

1 个答案:

答案 0 :(得分:0)

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

您需要在两个地方 project_name / config.xml project_name / platforms / android / res / xml / config.xml <中添加此行/强>