拨打手机号功能
wx.makePhoneCall({
phoneNumber: 'qipa250' //仅为示例,并非真实的电话号码
})
一键复制信息功能
wx.getClipboardData({
success (res){
console.log(res.data)
}
})
复制到剪贴板
定位导航功能
wx.getLocation({
type: 'gcj02', //返回可以用于wx.openLocation的经纬度
success (res) {
const latitude = res.latitude
const longitude = res.longitude
wx.openLocation({
latitude,
longitude,
scale: 18
})
}
})
存入手机通讯录功能
wx.addPhoneContact({
firstName: ifirstName,
mobilePhoneNumber: mobilePhoneNumber,
weChatNumber: weChatNumber,
organization: organization,
title: title,
addressStreet: addressStreet,
email: email
});
添加手机通讯录联系人。用户可以选择将该表单以「新增联系人」或「添加到已有联系人」的方式,写入手机系统通讯录。文章来源:https://www.toymoban.com/news/detail-806469.html
转发分享功能
页面内发起转发。通过给 button 组件设置属性 open-type=“share”,可以在用户点击按钮后触发 Page.onShareAppMessage 事件,相关组件:button。文章来源地址https://www.toymoban.com/news/detail-806469.html
/**
* 用户点击右上角分享
*/
onShareAppMessage(res) {
this.setData({
is_share: false,
container_top: 50,
})
console.log('res===', res);
//分享地址 路径,传递参数到指定页面。(为空则为当前页面路径)
let share_path = '/qipa250/pages/my-card/index?qipa=' + this.data.qipa+ "&tel=" + this.data.phone;
let share_title = this.data.nickname + '的名片,请惠存';
if (res.from == 'button') {
// 来自页面内转发按钮
return {
title: share_title,
path: share_path,
}
} else {
//否则是三个点
return {
title: share_title, //分享内容(为空则为当前页面文本)
path: share_path
};
}
}
到了这里,关于学习使用微信小程序实现智能名片电子名片功能代码的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!