UNPKG

1.62 kBMarkdownView Raw
1# Angular File Upload
2
3---
4
5## About
6
7**Angular File Upload** is a module for the [AngularJS](http://angularjs.org/) framework. Supports drag-n-drop upload, upload progress, validation filters and a file upload queue. It supports native HTML5 uploads, but degrades to a legacy iframe upload method for older browsers. Works with any server side platform which supports standard HTML form uploads.
8
9When files are selected or dropped into the component, one or more filters are applied. Files which pass all filters are added to the queue. When file is added to the queue, for him is created instance of `{FileItem}` and uploader options are copied into this object. After, items in the queue (FileItems) are ready for uploading.
10
11You could find this module in bower like [_angular file upload_](http://bower.io/search/?q=angular%20file%20upload).
12
13## Demos
141. [Simple example](http://nervgh.github.io/pages/angular-file-upload/examples/simple)
152. [Uploads only images (with canvas preview)](http://nervgh.github.io/pages/angular-file-upload/examples/image-preview)
163. [Without bootstrap example](http://nervgh.github.io/pages/angular-file-upload/examples/without-bootstrap)
17
18## More Info
19
201. [Introduction](https://github.com/nervgh/angular-file-upload/wiki/Introduction)
212. [Module API](https://github.com/nervgh/angular-file-upload/wiki/Module-API)
223. [FAQ](https://github.com/nervgh/angular-file-upload/wiki/FAQ)
234. [Migrate from 0.x.x to 1.x.x](https://github.com/nervgh/angular-file-upload/wiki/Migrate-from-0.x.x-to-1.x.x)
245. [RubyGem](https://github.com/marthyn/angularjs-file-upload-rails)