小程序开发API之添加手机通讯录联系人
效果图:
会自动弹出 创建新联系人和添加到现有联系人选项;
// 会自动弹出 创建新联系人和添加到现有联系人选项;
savetel: function () {
wx.addPhoneContact({
firstName: this.data.card_info.username,
mobilePhoneNumber: this.data.card_info.mobile,
weChatNumber: this.data.card_info.wchat_id,
organization: '楼盘标题', //公司
title: '置业顾问', //职位
success(res) {
console.log(res)
}
})
},
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
小程序拨号打电话:
wx.makePhoneCall({
phoneNumber: '1340000' //仅为示例,并非真实的电话号码
})
- 1
- 2
- 3
相关链接:
官网:/miniprogram/dev/api/device/contact/
小程序开发API之添加手机通讯录联系人:/jackjia2015/article/details/88182312