我有一个表单只使用angularJS上传图像文件.上传文件一切正常.问题是,我想将上传的文件限制为仅图像文件,并将图像的大小限制为一些MB.如何仅使用angularJS实现此目的?下面是代码
原文链接:https://www.f2er.com/angularjs/140642.html$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)}); };
<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>