chooseImage:fail api scope is not declared in the privacy agreement
时间: 2023-11-17 17:00:12 浏览: 158
codeblocks中报错:'to_string' was not declared in this scope解决方案
5星 · 资源好评率100%
该错误提示表明在使用chooseImage API时,用户未授权使用相应的权限。为了使用该API,需要在小程序的隐私协议中声明相应的权限。可以在小程序的app.json文件中添加如下代码:
"permission": {
"scope.writePhotosAlbum": {
"desc": "将图片保存到相册"
}
}
其中,scope.writePhotosAlbum表示需要授权的权限,desc表示该权限的描述信息。添加完毕后,用户在使用chooseImage API时会弹出授权窗口,询问用户是否允许使用该权限。
阅读全文