Library to support HTTP file uploads for Angular (tested with Angular 5).
This is extension of https://github.com/j-zeng/angular2-http-file-upload to support Angular 5.
npm install angular-http-file-upload@latest --save
// app.module.ts
import { NgModule } from '@angular/core';
import { UploaderModule } from 'angular-http-file-upload';
@NgModule({
// your module meta data here...
imports: [ UploaderModule.forRoot() ]
})
export class AppModule { }
// my-upload-item.ts
import { UploadItem } from 'angular-http-file-upload';
export class MyUploadItem extends UploadItem {
constructor(file: any) {
super();
this.url = 'https://your.domain.here/your.endpoint';
this.headers = { HeaderName: 'Header Value', AnotherHeaderName: 'Another Header Value' };
this.file = file;
}
}
// example.component.ts
import { Component } from '@angular/core';
import { Uploader } from 'angular-http-file-upload';
import { MyUploadItem } from './my-upload-item';
@Component({
// your component meta data here...
})
export class ExampleComponent {
constructor(public uploaderService: Uploader) { }
submit() {
let uploadFile = (<HTMLInputElement>window.document.getElementById('myFileInputField')).files[0];
let myUploadItem = new MyUploadItem(uploadFile);
myUploadItem.formData = { FormDataKey: 'Form Data Value' }; // (optional) form data can be sent with file
this.uploaderService.onSuccessUpload = (item, response, status, headers) => {
// success callback
};
this.uploaderService.onErrorUpload = (item, response, status, headers) => {
// error callback
};
this.uploaderService.onCompleteUpload = (item, response, status, headers) => {
// complete callback, called regardless of success or failure
};
this.uploaderService.upload(myUploadItem);
}
}
An upload progress callback is also available:
this.uploaderService.onProgressUpload = (item, percentComplete) => {
// progress callback
};
MIT © [Venkaiah Chowdary Koneru]