囲んでいる<form>がないAngularJS <input>検証


99

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-showng-show="myForm.myInput.$error.maxlength"役立ちます。

使用せずにこれを行うことは可能<form>ですか?


2
試しましたか?とは思いませんが、Angularはdocs.angularjs.org/api/ng/type/form.FormControllerform.FormControllervalid\invalid & dirty\pristine.
meconroy

回答:


184

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>


この答えを受け入れました。それは私が探していたものですが、答えは少し遅すぎました:)
Wojtek

1
これも助けになりました。私は髪を抜いていて、これにつまずきました。ありがとうございました!
Alex McCabe

1
ボタンのng-clickイベントでそのようなフォームを検証したい将来の読者は、こちらをご覧ください:stackoverflow.com/a/24123379/1371408
Matty J

個別の検証を含む複数の入力の例plnkr.co/edit/wuOExkq4LXEiDELm2C6E?p=preview
Nathan Redblur

@SilvioLucas-フィールドが空の場合でも、例は「実行」されます...?
colmde

0

ループで反復していて、フォーム名と有効な状態を補間できるようにする必要がある場合は、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>

-4
<!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>


1
これは、stackoverflow.com / a / 25342654/2333214とは異なりますか?もしそうなら、それがどのように違うのか説明を追加してくれませんか?
TJ

そして説明?
Maximiliano Becerra
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.