uni.chooseMedia( count: 1,mediaType: ['image'], sourceType: ['camera'],
success(res) {
uploadtoupyun({
filePath: res.tempFiles[0].tempFilePath,
name: 'file',
}).then((url) => {
that.imgList.push(url);
});
},
});
获取到的res.tempFiles[0].tempFilePath有文件路径,页面image标签src指向res.tempFiles[0].tempFilePath,显示是一张黑色图片,

真机鸿蒙系统6.1就会出现此问题