获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
async getUserProfile(e) { let isPrivacySetting = await this.$refs.kzWxPrivacyCheck.getPrivacySetting("showPrivacy"); console.log("isPrivacySetting", isPrivacySetting); if (isPrivacySetting) { var that = this; uni.getUserProfile({ lang: "zh_CN", desc: "显示用户信息", success: (res) => { uni.login({ provider: "weixin", success(e) { that.wxlogin(e.code, res.userInfo); }, }); }, fail: (err) => { console.log(err); }, }); } }
用户隐私协议已经更新并且审核通过了,还是报错?用户隐私协议已经更新并且审核通过了,还是报错 getUserProfile:fail api scope is not declared
07-07