How to preview picture stored in the fake path in Angular 2/Typescript?

后端 未结 4 567
逝去的感伤
逝去的感伤 2020-12-07 16:36

Browsers don\'t take full path of local disc, instead they concatenate the filename with fakepath. Is there any way to access the file (image) from fakepath using typescript

4条回答
  •  时光取名叫无心
    2020-12-07 17:22

    This should do what you want:

    
    
    
    readUrl(event:any) {
      if (event.target.files && event.target.files[0]) {
        var reader = new FileReader();
    
        reader.onload = (event: ProgressEvent) => {
          this.url = (event.target).result;
        }
    
        reader.readAsDataURL(event.target.files[0]);
      }
    }
    

提交回复
热议问题