Я пытаюсь отобразить изображение из библиотеки фотографий. Он возвращает меня, file:///storage/emulated/0/Android/data/com.xxx.mobile/cache/20200306_121224.jpg
HTML тег <img src="file:///storage/emulated/0/Android/data/com.xxx.mobile/cache/20200306_121224.jpg"/>
недействителен.
Исходный код: .ts file
const cameraOptions = {
sourceType: this.camera.PictureSourceType.PHOTOLIBRARY,
destinationType: this.camera.DestinationType.FILE_URI,
encodingType: this.camera.EncodingType.JPEG,
correctOrientation: true
}
this.camera.getPicture(cameraOptions).then((imageData) => {
if(imageData){
this.filePath.resolveNativePath(imageData).then(filePath => {
resolve(filePath);
//filePath variable is 'file:///storage/emulated/0/Android/data/com.xxx.mobile/cache/20200306_121224.jpg'
}).catch(err => console.log(err));
}
}, (err) => {
var error = JSON.stringify(err)
reject(error);
})
Исходный код: . html file
<img [src]="item.FileURI" />