0

我正在尝试验证 textAngular 文件,我需要在 textAngular 上添加所需的最大和最小字符以及红色/绿色的边框颜色...我有每个循环和 inide textAngulars...

这是我的代码:

 <form ng-submit="addReply(x)" class="dd animated slideInDown" novalidate>
            <div class="form-group">
                <text-angular ng-minlength=10 ng-maxlength=600 required ta-text-editor-class="form-control myform1-height" ta-html-editor-class="form-control myform1-height" ta-toolbar="[['bold','italics']]" style="min-height: 100px; color:red;" ng-model="form.reply[x.pivot.comment_id]"></text-angular>

                <span  ng-show="form.reply[x.pivot.comment_id].$dirty && form.reply[x.pivot.comment_id].$invalid"></span>
                <span ng-show="form.reply[x.pivot.comment_id].$error.min || form.reply[x.pivot.comment_id].$error.max">
      The value must be in range 0 to 10!</span>
                <span ng-show="form.reply[x.pivot.comment_id].$error.required">Email is required.</span>
            </div>
            <div class="form-group">
                <addreply></addreply>
            </div>
        </form>

我的代码不起作用我不知道为什么...

4

2 回答 2

0

根据 AngularJS 文档,你的表单和输入应该有名字。然后你应该将验证设置ng-showform_name.input_name.$error等等,就像这里

于 2015-09-20T20:06:32.587 回答
0

这是一个基于你的问题的小例子

 validating the required field

http://plnkr.co/edit/6PTNg3atPHAjL0XFtvWj?p=info

于 2015-09-21T04:57:21.060 回答