wx.addPhoneContact 在测试环境都可以正常使用,线上版本点击任何反映?
wx.addPhoneContact 接口无法使用体验版开发板,都可以正常弹出 [图片] 线上版本点击没有任何反映 [图片] GetLXR() { var that = this that.getAuthorize() wx.addPhoneContact({ firstName:'张三', mobilePhoneNumber: '13500000011', success(res) { }, fail(fail){ } }) }, getAuthorize: function () { wx.getSetting({ success: function (res) { if (!res.authSetting['scope.addPhoneContact']) { wx.authorize({ scope: 'scope.addPhoneContact', success: function () { console.log('授权成功') }, fail: function () { console.log('授权失败') } }) } } }) },