Upload file with AngularJs
-
I want upload the image or file with the tag html but I read that angularJs don't support this tag so the solution is to create a custom directive. So in my page index.html I wrote this code: <body ng-controller="myController"> <input type="file" file-model="myFile"/> </body> In my js file I write this code: var modulo = angular.module('myApp', []); modulo.directive('fileModel', function() { var modulo = angular.module('myApp', []); return { restict: 'A', link: function (scope, element, attr) { } } I don't uderstand how I can read the file that the user upload so I don't understand what write in the link function. How can I fix my problem? Is there anybody that help me? Thanks!
-
Answer:
You may use already built modules. There are already many Angular.js modules to perform file uploading: https://github.com/nervgh/angular-file-upload/ https://github.com/leon/angular-upload https://github.com/danialfarid/angular-file-upload https://github.com/uploadcare/angular-uploadcare
user3751473 at Stack Overflow Visit the source
Other answers
You can not read the file if your browser doesn't supports FileReader API. Your directive is applied on a file upload control. So, you can listen to its change event. With this change event, you can extract the file object provided in event, emit an event to catch it the controller. app.directive('fileUpload', function () { return { scope: true, link: function (scope, element, attrs) { /*Every time you select a file or a multiple files, change event is triggered. So, with this on, we are attaching a listener event to it. This event also contains useful data. Like the array of selected files. So, we iterate over the selected files, and emit an event containing file info.*/ element.on('change', function (event) { var files = event.target.files; for (var i = 0;i<files.length;i++) { scope.$emit("fileSelected", { file: files[i] }); } }); } }; With this code, you are listening to a file upload control's change event. On change, you are emitting an event called fileSelected, that you will receive in controller. function DefaultController($scope){ $scope.files = []; $scope.$on('fileSelected', function($event, args){ $scope.files.push( args.file ); }; Please note that, with this code, you are only adding file objects in your scope. You still need to send a request to upload file. You can use fallowing code taken http://shazwazza.com/post/uploading-files-and-json-data-in-the-same-request-with-angular-js/ with a little bit of correction. $http({ method: 'POST', url: "/Api/PostStuff", headers: { 'Content-Type': undefined}, transformRequest: function (data) { var formData = new FormData(); formData.append("model", angular.toJson(data.model)); for (var i = 0; i < data.files.length; i++) { formData.append("file" + i, data.files[i]); } return formData; }, data: { model: $scope.model, files: $scope.files } }). success(function (data, status, headers, config) { alert("success!"); }). error(function (data, status, headers, config) { alert("failed!"); });
hasH
Related Q & A:
- How to Upload a JSP File to the smart FTP?Best solution by Yahoo! Answers
- How to upload file to google cloud storage using Java?Best solution by Stack Overflow
- How I can validate input on form before upload file?Best solution by stackoverflow.com
- How to upload file using ajax php?Best solution by Stack Overflow
- How to upload file to a server from Salesforce?Best solution by help.salesforce.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.