Skip to content

Instantly share code, notes, and snippets.

@qichen0703
qichen0703 / file-uploader.component.html
Created October 24, 2018 06:11 — forked from stuartaccent/file-uploader.component.html
Angular 5 file uploader with queue and progress using HttpClient, example https://stackblitz.com/edit/angular-5-file-upload-queue
<div class="row">
<div class="col-md-3">
<h3>Select files</h3>
<input type="file" #fileInput multiple (change)="addToQueue()" />
</div>
<div class="col-md-9">
<h3>Upload queue</h3>
<table class="table-headed table-striped">