如何写精华回答,获更多曝光?
发布
华为系统分享面板分享到app的uri无读取权限,例如:
根据文档要求,通过如下api获取的数据,无读取权限
systemShare.getSharedData(want)
.then((data: systemShare.SharedData) => {
data.getRecords().forEach((record: systemShare.SharedRecord) => {
//这里拿到的uri无权限,如:file://media/Photo/1/IMG_1721727644_000/IMG_20240723_173904.jpg
});
})
.catch((error: BusinessError) => {
this.context.terminateSelf();
});