手机系统:鸿蒙4.0
表现:单加姓名可以,加手机号码等就不可以了。求解
addPhoneContact:fail:not supported
iscope.addPhonelontact: true, scope.address: true, scopeinvoice: true, scope,invoiceTitle: true, scope,userinfo: true)
scope.addPhoneContact: true
scope.address: true
scope.invoice: true
scope.invoiceTitle: true
scope.userInfo: true
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
savephone() {
// 添加到手机通讯录
wx.addPhoneContact({
firstName: '张三',//联系人姓名
mobilePhoneNumber: '18800000000', //联系人手机号
success(res) {
console.log("名片信息添加到通讯录成功:", res) //打印出添加的手机联系人信息
// wx.showToast({ title: '添加成功!' })
wx.showToast({
title: '名片保存成功',
icon: 'success',
})
},
fail(err) {
console.log("名片信息添加到通讯录失败:", err)
}
})
},