web-dev-qa-db-ja.com

TypeScriptとAngular 4を使用して画像を表示するにはどうすればよいですか

TypeScriptとWeb開発全般は非常に新しいので、コードがひどい場合は申し訳ありません。とにかく、プロフィール写真をアップロードするための「プレビュー画像」の表示に問題があります。 ng2-file-uploadを使用して画像をサーバーにアップロードしていますが、その部分は正しく機能しています。アップロードボタンをクリックする前に、選択した画像を選択した直後にページに表示します。現在、HTMLImageElementからsrcプロパティを取得して画像を表示しようとしていますが、srcプロパティが空のようです。

import { Component, OnInit } from '@angular/core';
import {  FileUploader } from 'ng2-file-upload/ng2-file-upload';

const URL = 'http://localhost:4200/api/upload';

@Component({
  selector: 'app-view-profile',
  templateUrl: './view-profile.component.html',
  styleUrls: ['./view-profile.component.css']
})
export class ViewProfileComponent implements OnInit {

  constructor() { }
  public uploader: FileUploader = new FileUploader({url: URL, itemAlias: 'newProfilePicture'});
  title: string;
  previewImage: any;
  tempImage: any;
  source: string;

  imagePreview(input) 
  {
      document.getElementById("previewImage").style.display="block";
      
        console.log("Image is selected")
        this.previewImage = document.getElementById("previewImage");
        console.log(this.previewImage);
        
        this.source = (<HTMLImageElement>document.getElementById('previewImage')).src
        console.log("Image Source: " + this.source + " Should be inbetween here");
        
      
      //var reader = new FileReader();
        
        //console.log(this.previewImage);
      
  }

  ngOnInit() {
        this.title = 'View or Update Your Profile';
        this.uploader.onAfterAddingFile = (file)=> {file.withCredentials = false;};
        this.uploader.onCompleteItem = (item:any, response:any, status:any, headers:any) => {
        console.log("ImageUpload:uploaded:", item, status, response);
    //this.imagePreview();


    };
  }


}

そして、これが私のHTMLです

<div class="container">
    <h1>{{title}}</h1>

    <div>

        <input type="file" id="previewImage" (change)="imagePreview(this);" name="newProfilePicture" ng2FileSelect [uploader] ="uploader" />
        <button type="button" class="btn btn-success btn-s" (click)="uploader.uploadAll()" [disabled]="!uploader.getNotUploadedItems().length">
          Upload Your File
        </button>
    </div>
</div>
8
Kenny Ho

この単純な関数でこれを実現します:

テンプレート :

<img [src]="url" height="200"> <br/>
<input type='file' (change)="onSelectFile($event)">

コンポーネント

onSelectFile(event) { // called each time file input changes
    if (event.target.files && event.target.files[0]) {
      var reader = new FileReader();

      reader.readAsDataURL(event.target.files[0]); // read file as data url

      reader.onload = (event) => { // called once readAsDataURL is completed
        this.url = event.target.result;
      }
    }
}

これが実際の例です。これをチェックしてください:

WORKING DEMO

20
Vivek Doshi

テンプレート :

<input type='file' (change)="readUrl($event)">
<img [src]="url">

コンポーネント

 readUrl(event:any) {
      if (event.target.files && event.target.files[0]) {
          var reader = new FileReader();

          reader.onload = (event:any) => {
              this.url = event.target.result;
          }

          reader.readAsDataURL(event.target.files[0]);
      }
 }

Tはそれを試しましたが、エラーなしで機能します。

3
Iron shield