Angular2 net :: ERR_UNKNOWN_URL_SCHEME for Base64 image

时间:2016-11-25 15:23:19

标签: angular base64

我正在尝试在HTML上显示jpg / png图像。从服务器我得到Base64字符串。我在HTML中显示的内容为:

<md-card>
  <md-card-content>
    <img id="uploadPicture" class="uploadPicture" [src]="'data:image/jpg;base64,' +file_src ">
  </md-card-content>
  <md-card-actions>
    <input id="uploadedFile" type="file" #fileInput (change)="chooseImage(fileInput.files)"/>
    <button md-raised-button color="primary" [disabled]="isUploaded" (click)="uploadPicture(fileInput.files)">{{'upload picture' | translate}}</button>
    <button md-raised-button color="primary" [disabled]="isRemoved" (click)="removePicture()">{{'remove picture' | translate}}</button>
  </md-card-actions>
</md-card>

当我使用PUT URL上传图片时,它工作正常。但是当我尝试使用GET API下载它时,它给出了错误:

  

净:: ERR_UNKNOWN_URL_SCHEME

我也收到警告:

  

警告:清理不安全的URL值

我在组件中使用清洁剂如下:

ngOnInit(): void {
    if(this.file_src!='')
    {
      this.userService.getPicture()
      .then(
      (response:any) => {
        console.log(response);
        this.file_src = response.json();
        this.file_src = this._sanitizer.sanitize(SecurityContext.URL, `data:image/png;base64,${this.file_src}`);
      }
      )
      .catch(
      (error:any) => {
        this.displayError();
      }
      )
    }
  }

但它没有用。有人能告诉我可能是什么问题吗?

1 个答案:

答案 0 :(得分:0)

当上传图片在base64string中附加http:\或https:\时。