Ионная картинка, показывающая ERR_INVALID_URL - PullRequest
0 голосов
/ 19 ноября 2018

Здравствуйте, ionic. Я пытаюсь показать фотографии, но получаю ошибку ERR_INVALID_URL. Вот код

 resimekle()
  {
    const options: CameraOptions = {
      quality: 100,
      destinationType: this.camera.DestinationType.FILE_URI,
      encodingType: this.camera.EncodingType.JPEG,
      mediaType: this.camera.MediaType.PICTURE
    }
    
    this.camera.getPicture(options).then((imageData) => {
     // imageData is either a base64 encoded string or a file URI
     // If it's base64 (DATA_URL):
     this.base64Image = 'data:image/jpeg;base64,' + imageData;
     this.base64Image= this.base64Image.replace(/^file:\/\//, '');
    }, (err) => {
     // Handle error
    });
  }
<img [src]="_DomSanitizationService.bypassSecurityTrustUrl(base64Image)"/>

ОШИБКА: данные: изображение / jpeg; base64, файл: ///storage/emulated/0/Android/data/io.ionic.starter/cache/1542647016224.jpg net :: ERR_INVALID_URL

...