收藏
回答

needauthorization 过一段时间变成true,前一天同意协议后,第二天又变成true?

onload() {
wx.getPrivacySetting({
        success: res => {
          if (res.needAuthorization) {
            // 没同意,需要协议
            this.showPrivacy = true
          } else {
            // 已经同意过了,不需要协议
            this.showPrivacy = false
          }
        },
        fail(err) {
          console.log(err);
        }
      })

}

回答关注问题邀请回答
收藏

2 个回答

  • 社区技术运营专员--许涛
    社区技术运营专员--许涛
    08-05

    你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)

    08-05
    有用
    回复
  • showms
    showms
    08-02

    协议是否有更新、是否有卸载过小程序、是否有在开发工具上清除授权记录

    08-02
    有用
    回复 1
登录 后发表内容