AngularJS <input> การตรวจสอบความถูกต้องโดยไม่มีการใส่ <form>


100

เป็นไปได้หรือไม่ใน 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>

ตัวอย่างด้านบนใช้ไม่ได้ การแนบ<form>และแทนที่ng-showด้วยความng-show="myForm.myInput.$error.maxlength"ช่วยเหลือ

เป็นไปได้ไหมที่จะทำโดยไม่ใช้<form>?


2
คุณลองหรือยัง? ฉันไม่คิดว่าจะเป็นเช่นนั้นฉันเชื่อว่า Angular สร้างform.FormControllerเบื้องหลังที่ติดตามสถานะการป้อนข้อมูลของแบบฟอร์มสิ่งต่างๆเช่นvalid\invalid & dirty\pristine. docs.angularjs.org/api/ng/type/form.FormController
meconroy

คำตอบ:


184

คุณสามารถใช้คำสั่งเชิงมุมรูปแบบ ng ( ดูเอกสารที่นี่ ) เพื่อจัดกลุ่มอะไรก็ได้แม้จะอยู่นอกรูปแบบ 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.