Skip to main content

Posts

Showing posts with the label AngularJs file Upload Example

AngularJs file Upload Example

Hello everyone, I am going to share the code sample for how to upload file  using angularjs. The live demo plunker code http://embed.plnkr.co/5bm1zQ/preview The Angular example code as given below. var app = angular.module( 'myApp' , [' angularFileUpload ' ]);  app.controller( 'mycontroller' ,   function ($scope) {               $scope.onSelectFile = function ($files) {                   for ( var i = 0; i < $files.length; i++) {                       var $file = $files[i];                       $upload.upload({            ...