Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Nov 24, 2020. It is now read-only.

Directive to convert files submitted in an input type file to base64

NotificationsYou must be signed in to change notification settings

jrel/angular-file-form-control

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;}

Installation

To install this library, run:

$ npm install angular-file-form-control --save

Consuming your library

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"><

License

MIT ©João Lourenço

About

Directive to convert files submitted in an input type file to base64

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp