반응형
컨트롤러 내에서 $setValid 사용
파일 변경에 대한 검증을 하려고 합니다.코드는 다음과 같습니다.
표시/템플릿
<input type="file" name="file" id="file"
onchange="angular.element(this).scope().setFile(this)"
required />
<span class="error" ng-show="myForm.file.$error.required">Error</span>
<span class="error" ng-show="myForm.file.$error.size">Selected file is too large</span>
<span class="error" ng-show="myForm.file.$error.filetype">Unsupported File type</span>
컨트롤러
angular.module("myapp").controller("myctrl", function($scope) {
$scope.setFile = function(element) {
$scope.$apply(function($scope) {
var fileObject = element.files[0];
$scope.file.fileType =
fileObject.type.toUpperCase().substring(fileObject.type.indexOf("/") + 1);
// Validation
if (!$scope.isValidFileType($scope.file.fileType)) {
myForm.file.$setValidity("myForm.file.$error.filetype", false);
}
if (fileObject.size > 1000*1000*10) {
myForm.file.$setValidity("myForm.file.$error.size", false);
}
});
};
$scope.isValidFileType = function(fileExtension) {
var supportedExtensions = ["doc", "docx", "ppt", "pptx", "jpg", "gif", "png"]; // etc.
return (jQuery.inArray(fileExtension, supportedExtensions) > -1);
}
});
하지만 지금 당장은$setValidity
동작하지 않습니다.
무슨 생각 있어?
다음 행:
myForm.file.$setValidity("myForm.file.$error.size", false);
그래야 한다
$scope.myForm.file.$setValidity("size", false);
ngModelController에서 $setValidity를 호출해야 합니다.관제사 안에서, 내 생각에 그것은$scope.myForm.file.$setValidity()
.
양식 페이지의 "사용자 정의 유효성 검사" 섹션을 참조하십시오.
또한 $setValidity의 첫 번째 인수에는 'filetype'과 'size'만 사용합니다.
단일 요소에 대한 여러 검증 메시지를 표시하는 더 나은 최적화 솔루션은 다음과 같습니다.
<div ng-messages="myForm.file.$error" ng-show="myForm.file.$touched">
<span class="error" ng-message="required"> <your message> </span>
<span class="error" ng-message="size"> <your message> </span>
<span class="error" ng-message="filetype"> <your message> </span>
</div>
컨트롤러 코드는 @ Ben Lesh가 제안하는 코드여야 합니다.
언급URL : https://stackoverflow.com/questions/14363656/using-setvalidity-inside-a-controller
반응형
'programing' 카테고리의 다른 글
스프링 부트 애플리케이션을 실행하기 위한 "gradle boot Run"과 "gradle run"의 차이점은 무엇입니까? (0) | 2023.03.21 |
---|---|
워드프레스 테마 사용자 지정기 - 섹션/설정을 추가할 수 없습니다. (0) | 2023.03.21 |
React Native의 PhaseScriptExecution [CP-User]오류 (0) | 2023.03.21 |
Woocommerce 체크 아웃필드 순서 변경 (0) | 2023.03.21 |
JSX 내부의 React에서 숫자를 루프오버하는 방법 (0) | 2023.03.21 |