微信小程序代码wx.makePhoneCall实现拨打电话功能,安卓和苹果iOS亲测可用

官方文档

wx.makePhoneCall(Object object)

拨打电话

参数

Object object

示例代码

实际应用

例如我在自定义底部导航条工具栏上添加一个免费咨询的按钮

对应的wxml

<view class='footer_list2' data-id='4' catchtap='freeTell' data-current="4" bindtap="chooseImg">

    <image class="footer-image2" src="../images/tell.png"></image>

  </view>

在对应的js文件中定义 freeTell 处理程序

freeTell: function(){

    wx.makePhoneCall({

      phoneNumber: '03123688777',

    })

  }

模拟预览效果:

在手机上看到的效果

微信不会直接发起电话呼叫,而是跳转到拨号页面,自动完成号码输入。

发表评论