收藏
回答

为什么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();

        }

    }

});

}

})

},

回答关注问题邀请回答
收藏
登录 后发表内容