我有一个表格,只使用angularJS上传图像文件。上传文件一切正常。问题是,我想将上传的文件限制为仅图像文件,并将图像的大小限制为一些MB。如何仅使用angularJS实现此目的?以下是代码
$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>