Angular2 - 显示图像

AJ_*_*AJ_ 0 image typescript angular

我创建了一个允许用户上传图像的Angular2应用程序.我想实现一个预览选项.但是,当我试图破坏它时,图像不会显示出来.我如何实现此功能?

UploadComponent.ts

import * as ng from '@angular/core';
//import { UPLOAD_DIRECTIVES } from 'ng2-uploader';
import {UploadService} from '../services/upload.service'; 

@ng.Component({
  selector: 'my-upload',
  providers:[UploadService], 
  template: require('./upload.html')
})
export class UploadComponent {
    progress:any; 
    logo:any; 
    filesToUpload: Array<File>;
    constructor(public us:UploadService){
        this.filesToUpload = [];
    }
    upload() {
        this.us.makeFileRequest("http://localhost:5000/api/SampleData/Upload", this.filesToUpload)
        .then((result) => {
            console.log(result);
        }, (error) => {
            console.error(error);
        });
    }
    onFileChange(fileInput: any){
        this.logo = fileInput.target.files[0];
    }
}
Run Code Online (Sandbox Code Playgroud)

Upload.html

<h2>Upload</h2>
<input type="file" (change)="onFileChange($event)" placeholder="Upload image..." />
<button type="button" (click)="upload()">Upload</button>
 <img [src]="logo" alt="Preivew"> 
Run Code Online (Sandbox Code Playgroud)

Ale*_*fan 6

你尝试它的方式,你不会得到图像URL fileInput.target.files[0],而是一个对象.

要获取图像URL,您可以使用FileReader(此处的文档)

onFileChange(fileInput: any){
    this.logo = fileInput.target.files[0];

    let reader = new FileReader();

    reader.onload = (e: any) => {
        this.logo = e.target.result;
    }

    reader.readAsDataURL(fileInput.target.files[0]);
}
Run Code Online (Sandbox Code Playgroud)