评论

最近新增的隐私弹窗相关api调用经验分享

小程序隐私弹窗同意按钮,在uni-app中的使用

我司的小程序是用uni-app开发的,在声明同意隐私协议的按钮时,参考官方文章

<button 
        id="agree-btn" 
        open-type="agreePrivacyAuthorization" 
        bindagreeprivacyauthorization="handleAgreePrivacyAuthorization"
>
同意
</button>
methods: {
    handleAgreePrivacyAuthorization() {
    
    }
}

在uni-app中,bindagreeprivacyauthorization要写成@agreeprivacyauthorization,否则会报

Component "xxx" does not have a method "handleAgree" to handle event "agreeprivacyauthorization".
最后一次编辑于  2023-08-28  
点赞 0
收藏
评论
登录 后发表内容