最佳答案
是否有可能在角度验证一个单一的,孤立的 <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="myForm.myInput.$error.maxlength"
替换 ng-show
会有所帮助。
有没有可能不用 <form>
就能做到这一点?