programing

AngularJS

nasanasas 2020. 8. 30. 08:43
반응형

AngularJS 둘러싸 지 않은 유효성 검사


Angular <input>에서 양식의 유효성을 검사하는 것과 유사한 방식으로 격리 된 단일 유효성을 검사 할 수 있습니까? 나는 다음과 같은 것에 대해 생각하고 있습니다.

<div class="form-group">
    <input name="myInput" type="text" class="form-control" ng-model="bindTo" ng-maxlength="5">
    <span class="error" ng-show="myInput.$error.maxlength">Too long!</span>
</div>

위의 예는 작동하지 않습니다. A의 그것을 둘러싸 <form>및 교체 ng-show와 함께하는 ng-show="myForm.myInput.$error.maxlength"데 도움이됩니다.

사용하지 않고 할 수 <form>있습니까?


ng-form 각도 지시문 ( 여기 문서 참조 )을 사용하여 html 양식 외부에서도 모든 것을 그룹화 할 수 있습니다. 그런 다음 각도 FormController를 활용할 수 있습니다.

<div class="form-group" ng-form name="myForm">
    <input name="myInput" type="text" class="form-control" ng-model="bindTo" ng-maxlength="5">
    <span class="error" ng-show="myForm.myInput.$error.maxlength">Too long!</span>
</div>


루프에서 반복하고 양식 이름과 유효한 상태를 보간 할 수 있어야하는 경우 Silvio Lucas의 답변을 기반으로합니다.

<div
  name="{{propertyName}}"
  ng-form=""
  class="property-edit-view"
  ng-class="{
    'has-error': {{propertyName}}.editBox.$invalid,
    'has-success':
      {{propertyName}}.editBox.$valid &&
      {{propertyName}}.editBox.$dirty &&
      propertyValue.length !== 0
  }"
  ng-switch="schema.type">
  <input
    name="editBox"
    ng-switch-when="int"
    type="number"
    ng-model="propertyValue"
    ng-pattern="/^[0-9]+$/"
    class="form-control">
  <input
    name="editBox"
    ng-switch-default=""
    type="text"
    ng-model="propertyValue"
    class="form-control">
  <span class="property-type" ng-bind="schema.type"></span>
</div>

<!DOCTYPE html>
<html ng-app="plunker">
<head>
    <meta charset="utf-8" />
    <title>AngularJS Plunker</title>
    <script>document.write('<base href="' + document.location + '" />');</script>
    <link rel="stylesheet" href="style.css" />
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.5/angular.min.js">   </script>

</head>

<body ng-controller="MainCtrl">
    <div class="help-block error" ng-show="test.field.$error.required">Required</div>
    <div class="help-block error" ng-show="test.firstName.$error.required">Name Required</div>
    <p>Hello {{name}}!</p>
    <div ng-form="test" id="test">
        <input type="text" name="firstName" ng-model="firstName" required> First name <br/> 
        <input id="field" name="field" required ng-model="field2" type="text"/>
    </div>
</body>
<script>
    var app = angular.module('plunker', []);

    app.controller('MainCtrl', function($scope) {
      $scope.name = 'World';
      $scope.field = "name";
      $scope.firstName = "FirstName";
      $scope.execute = function() {
        alert('Executed!');
      }
    });

</script>

참고 URL : https://stackoverflow.com/questions/22098584/angularjs-input-validation-with-no-enclosing-form

반응형