请问解决了吗
wx.addPhoneContact 导入安卓手机成功触发回调失败函数,成功失败返回值都一样https://developers.weixin.qq.com/miniprogram/dev/framework/[图片]
11-25请问解决了吗
为什么wx.addPhoneContact在安卓手机保存通讯录之后返回小程序后调用了fail回调?API:wx.addPhoneContact 安卓微信版本号:8.0.43 基础库:3.4.7 代码片段: savePhone(){ wx.addPhoneContact({ firstName: this.card.name, mobilePhoneNumber: this.card.mobile, success: function () { wx.showToast({ icon:'success', title:'保存成功' }) }, fail: function () { wx.showModal({ title: '提示', content: '需要获取用户通讯录权限', confirmText: '前往设置', confirmColor: '#3CC51F', success(res) { if (res.confirm) { wx.openSetting(); } } }); } }) },
11-25同问,楼主解决了吗?
为什么wx.addPhoneContact在安卓手机保存通讯录之后返回小程序后调用了fail回调?为什么wx.addPhoneContact在安卓手机保存通讯录之后返回小程序后调用了fail回调? 代码片段: savePhone(){ wx.addPhoneContact({ firstName: this.card.name, mobilePhoneNumber: this.card.mobile, success: function () { wx.showToast({ icon:'success', title:'保存成功' }) }, fail: function () { wx.showModal({ title: '提示', content: '需要获取用户通讯录权限', confirmText: '前往设置', confirmColor: '#3CC51F', success(res) { if (res.confirm) { wx.openSetting(); } } }); } }) },
11-25