This repository was archived by the owner on Nov 24, 2020. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork0
jrel/angular-file-form-control
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
The angular-file-form-control transform the files received in input of type file to object with data in base64!
The secture f object is:
interfaceFile{name:string;type:string;value:string;}
To install this library, run:
$ npm install angular-file-form-control --save
Once you have published your library to npm, you can import your library in any Angular Module:
import{BrowserModule}from'@angular/platform-browser';import{NgModule}from'@angular/core';import{AppComponent}from'./app.component';// Import your libraryimport{FileFormControlModule}from'angular-file-form-control';@NgModule({declarations:[AppComponent],imports:[BrowserModule,// Specify your library as an importFileFormControlModule],providers:[],bootstrap:[AppComponent]})exportclassAppModule{}
Once your library is imported, you can use the directive in your Angular application:
<!-- You can now use your library component in app.component.html --><inputtype="file"[fileFormControl]="fileFormControl"><
MIT ©João Lourenço
About
Directive to convert files submitted in an input type file to base64
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.