我本飞扬521 发表于 2016-6-6 10:21:53

ionic的一键拨号咋做啊?求指教

我在页面上用的这个<a href="tel:400-000-0000">拨号</a>没有效果!求指教

h110937006 发表于 2016-6-6 11:23:07

config.xml 加上这个 <access origin="tel:*" launch-external="yes" />

我本飞扬521 发表于 2016-6-6 13:42:47

h110937006 发表于 2016-6-6 11:23
config.xml 加上这个

ok了,谢谢

staysunday 发表于 2016-7-15 13:51:57

h110937006 发表于 2016-6-6 11:23
config.xml 加上这个

加上这个还是不可以哎

staysunday 发表于 2016-7-15 13:52:18

h110937006 发表于 2016-6-6 11:23
config.xml 加上这个

加上这个还是不可以哎

staysunday 发表于 2016-7-15 14:06:48

staysunday 发表于 2016-7-15 13:52
加上这个还是不可以哎

得写在<access origin = "*"/>的前面哎!!我发现啦

cswisodmliu 发表于 2016-7-16 14:39:31

http://www.ionic.ren/2016/01/15/ionic%e5%ae%9e%e7%94%a8%e5%8a%9f%e8%83%bd%e5%85%ab-%e7%82%b9%e5%87%bb%e6%8b%a8%e6%89%93%e7%94%b5%e8%af%9d%e5%8a%9f%e8%83%bd/ 看看这个

ionicwang 发表于 2016-7-16 21:58:04

在cordova中所有的URL Schemes 都是服从于白名单的,所以要现在项目config.xml中添加

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

ionicwang 发表于 2016-7-16 21:59:05

<div class="col col-25 whiteFore" style="padding: 0px;text-align: center;line-height:1;background: #ff9402;"   ng-click="callPhone(18680470232)"><img ng-src="img/shop/tel.png" height="20px" width="20px" style="margin-top:0.3rem"><br>电话</div>
方法:
$scope.callPhone = function (mobilePhone) {console.log("拨打:" + mobilePhone);$window.location.href = "tel:" + mobilePhone;};
页: [1]
查看完整版本: ionic的一键拨号咋做啊?求指教