ionic的一键拨号咋做啊?求指教
我在页面上用的这个<a href="tel:400-000-0000">拨号</a>没有效果!求指教 config.xml 加上这个 <access origin="tel:*" launch-external="yes" /> h110937006 发表于 2016-6-6 11:23config.xml 加上这个
ok了,谢谢 h110937006 发表于 2016-6-6 11:23
config.xml 加上这个
加上这个还是不可以哎 h110937006 发表于 2016-6-6 11:23
config.xml 加上这个
加上这个还是不可以哎 staysunday 发表于 2016-7-15 13:52
加上这个还是不可以哎
得写在<access origin = "*"/>的前面哎!!我发现啦 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/ 看看这个 在cordova中所有的URL Schemes 都是服从于白名单的,所以要现在项目config.xml中添加
<access origin="tel:*" launch-external="yes" /> <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]