Skip to content

Instantly share code, notes, and snippets.

View rluckez's full-sized avatar

Rafael Luckez rluckez

  • eCondos
  • Jacareí - SP
View GitHub Profile
@Toxicable
Toxicable / file-upload.component.ts
Created October 23, 2016 07:18
How to upload files in angular 2
/**
* Created by Fabian on 19/10/2016.
*/
import { Component, ElementRef, Input } from '@angular/core';
import { Http } from '@angular/http';
@Component({
selector: 'file-upload',
template: '<input type="file" [attr.multiple]="multiple ? true : null" (change)="upload()" >'
})
export class FileUploadComponent {