Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to detect the uploaded file type in angularJS

I have an form to upload only image file using angularJS. Uploading the file is all working fine. The problem is, I want to restrict the uploaded file to be only image file and also the size of the image to be some MB. How can I achieve this using only angularJS? Below is the code

$scope.uploadFile = function(files) {
    var fd = new FormData();
    //Take the first selected file
    fd.append("file", files[0]);

    $http.post("logoTypesServiceStore", fd, {
        withCredentials: true,
        headers: {'Content-Type': undefined },
        transformRequest: angular.identity
    }).success( function(data) {alert(data); }).error( function(data) { alert(data)});

};  

Below is the form to upload file.

 <form name="logoTypeForm" novalidate>
     <input type="text" name="logoType" ng-model="logoType" class="form-control" required />
     <input type="file" name="file" onchange="angular.element(this).scope().uploadFile(this.files)"/>

 </form>
like image 227
uma Avatar asked Jun 11 '14 08:06

uma


2 Answers

Modern browsers have File API support.

$scope.uploadFile = function(files) {
    files[0].type; //MIME type
    files[0].size; //File size in bytes
}; 

Here is a list of image MIME types

like image 130
LostInComputer Avatar answered Oct 22 '22 21:10

LostInComputer


I would recommend to already specify the files you would like to accpet within your input tag like so:

<input type="file" name="files" accept="image/*">

For more information check out the W3Schools reference for the input tag.

like image 40
LordTribual Avatar answered Oct 22 '22 19:10

LordTribual