我正在将应用程序的图像上传到服务器。 在将它们上传到服务器之前,有没有办法在将它们提交到服务器之前通过JS验证客户端的扩展?
我正在使用AngularJs来处理我的前端。
答案 0 :(得分:23)
您可以使用此简单的JavaScript进行验证。此代码应放在指令中并更改文件上载控件。
var extn = filename.split(".").pop();
或者你也可以使用javascript substring方法:
fileName.substr(fileName.lastIndexOf('.')+1)
答案 1 :(得分:11)
您可以创建一个角度指令,这样的东西应该可以工作(更改validFormats数组中的接受值);
HTML:
<form name='fileForm' >
<input type="file" name="file" ng-model="fileForm.file" validfile>
</form>
使用Javascript:
angular.module('appname').directive('validfile', function validFile() {
var validFormats = ['jpg', 'gif'];
return {
require: 'ngModel',
link: function (scope, elem, attrs, ctrl) {
ctrl.$validators.validFile = function() {
elem.on('change', function () {
var value = elem.val(),
ext = value.substring(value.lastIndexOf('.') + 1).toLowerCase();
return validFormats.indexOf(ext) !== -1;
});
};
}
};
});
答案 2 :(得分:5)
用于文件验证,即必需,文件扩展名,大小。创建自定义指令并使用angular js ng-message模块简化验证错误
<强> HTML 强>
<input type="file" ng-model="imageFile" name="imageFile" valid-file required>
<div ng-messages="{FORMNAME}.imageFile.$error" ng-if="{FORMNAME}.imageFile.$touched">
<p ng-message="required">This field is required</p>
<p ng-message="extension">Invalid Image</p>
</div>
Angular JS
customApp.directive('validFile', function () {
return {
require: 'ngModel',
link: function (scope, elem, attrs, ngModel) {
var validFormats = ['jpg','jpeg','png'];
elem.bind('change', function () {
validImage(false);
scope.$apply(function () {
ngModel.$render();
});
});
ngModel.$render = function () {
ngModel.$setViewValue(elem.val());
};
function validImage(bool) {
ngModel.$setValidity('extension', bool);
}
ngModel.$parsers.push(function(value) {
var ext = value.substr(value.lastIndexOf('.')+1);
if(ext=='') return;
if(validFormats.indexOf(ext) == -1){
return value;
}
validImage(true);
return value;
});
}
};
});
<强>需要强> angular-messages.min.js
答案 3 :(得分:1)
以下是验证文件扩展名AngularJs的完整代码
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script type='text/javascript'>
var myApp = angular.module('myApp', []);
myApp.controller('MyCtrl', function($scope) {
$scope.setFile = function(element) {
$scope.$apply(function($scope) {
$scope.theFile = element.files[0];
$scope.FileMessage = '';
var filename = $scope.theFile.name;
console.log(filename.length)
var index = filename.lastIndexOf(".");
var strsubstring = filename.substring(index, filename.length);
if (strsubstring == '.pdf' || strsubstring == '.doc' || strsubstring == '.xls' || strsubstring == '.png' || strsubstring == '.jpeg' || strsubstring == '.png' || strsubstring == '.gif')
{
console.log('File Uploaded sucessfully');
}
else {
$scope.theFile = '';
$scope.FileMessage = 'please upload correct File Name, File extension should be .pdf, .doc or .xls';
}
});
};
});
</script>
</head>
<body ng-app="myApp">
<div ng-controller="MyCtrl">
<input type="file"
onchange="angular.element(this).scope().setFile(this)">
{{theFile.name}}
{{FileMessage}}
</div>
</body>
</html>
答案 4 :(得分:0)
您可以添加一个自定义指令来检查element.files
数组,以便检查onchange
事件的类型。
文件输入没有嵌入式验证。
答案 5 :(得分:0)
有许多模块可以帮助您解决这个问题。其中任何一个都应该允许您定义过滤器以仅上传某些文件扩展名。
如果您正在寻找更简单的解决方案,可以使用string.js之类的内容来确保上传文件的文件名扩展名为“.png”。