1.0.9 • Published 3 years ago

angularjs-file-model v1.0.9

Weekly downloads
32
License
MIT
Repository
github
Last release
3 years ago

angularjs-file-model Tests

AngularJS directive to support NgModel for HTML input file types

Getting Started

Installation

You can directly clone/download here

git clone https://github.com/sibiraj-s/angularjs-file-model.git

or use cdn

Minified:

//unpkg.com/angularjs-file-model@latest/fileModel.min.js

Pretty Printed:

//unpkg.com/angularjs-file-model@latest/fileModel.js

or

Install via Package managers such as npm or yarn

npm install angularjs-file-model --save
# or
yarn add angularjs-file-model

Usage

Import the modules required for angularjs-file-model.

<script src="angular/angular.min.js"></script>
<script src="../fileModel.min.js"></script>

add angularjsFileModel dependency to the module

angular.module('myApp', ['angularjsFileModel'])

and in your html

<input type="file" ng-model="files" file-model ng-change="onFileSelect()">

or

<input type="file" ng-model="files" file-model as-file ng-change="onFileSelect()">

Option

as-file will bind the file object to the ng-model without it only plain object with file properties will bind to ng-model

1.0.9

3 years ago

1.0.8

4 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

7 years ago

1.0.0

7 years ago