เป็นไปได้หรือไม่ใน 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>
?
form.FormController
เบื้องหลังที่ติดตามสถานะการป้อนข้อมูลของแบบฟอร์มสิ่งต่างๆเช่นvalid\invalid & dirty\pristine.
docs.angularjs.org/api/ng/type/form.FormController