«angularjs-forms» 태그된 질문

9
컨트롤러에서 양식에 액세스 할 수 있습니까?
현재 다음을 사용하고 있습니다. $scope.$$childHead.customerForm[firstName]그래서 : <form name="customerForm"> <input type="text" name="firstName" ng-model="data.customer.firstName" tabindex="1" ng-disabled="!data.editable" validationcustomer /> </form> 그러나 이것은 Chrome에서만 작동합니다. 이제 다음을 시도했습니다. $scope.editCustomerForm[firstName]그래서 : <form name="customerForm" ng-model="editCustomerForm"> <input type="text" name="firstName" ng-model="data.customer.firstName" tabindex="1" ng-disabled="!data.editable" validationcustomer /> </form> 작동하지 않습니다. 내 양식은 Foundation 탭 안에 있습니다. 어떻게 액세스 할 수 …

3
컨트롤러 내에서 $ setValidity 사용
파일 변경에 대한 유효성 검사를 시도하고 있습니다. 내 코드는 다음과 같습니다. 보기 / 템플릿 <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 = …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.