0

I bumped into a strange behaviour of ngMessage

into an angular ui bootstrap tabs the validation

doesn't work in the first tab

the code

js

angular
        .module('app', ['ngMessages','ui.bootstrap'])
        .controller('MainCtrl', MainCtrl);
        function MainCtrl() {}

html

<body class="container" ng-app="app" ng-controller="MainCtrl as main">
        <uib-tabset active="0" justified="true">
            <uib-tab index="0">
                <uib-tab-heading>
                  <ul class="header">
                    <li class="title">title 1</li>
                    <li class="description">Descr 1</li>
                  </ul>
                </uib-tab-heading>
                <div class="tab-pane-general">
                   <form name="form" novalidate>
                        <div class="form-group" ng-class="{ 'has-error': form.location.$touched && form.location.$invalid }">
                            <label>Name</label>
                            <input type="text" name="location" class="form-control" 
                                ng-model="main.location"
                                ng-minlength="5"
                                ng-maxlength="10"
                                required>
                            <div class="help-block" ng-messages="form.location.$error" ng-show="form.location.$touched">
                                <div class="alert alert-danger" role="alert">
                                    <p ng-message="minlength">Your name is too short.</p>
                                    <p ng-message="maxlength">Your name is too long.</p>
                                    <p ng-message="required">Your name is required.</p>
                                </div>
                            </div>         
                        </div>
                    </form>
                </div>
            </uib-tab>
            <uib-tab index="1">
                <uib-tab-heading>
                  <ul class="header">
                    <li class="title">title 2</li>
                    <li class="description">Descr 2</li>
                  </ul>
                </uib-tab-heading>
                <div class="tab-pane-general">
                    <form name="form" novalidate>
                        <div class="form-group" ng-class="{ 'has-error': form.location.$touched && form.location.$invalid }">
                            <label>Name</label>
                            <input type="text" name="location" class="form-control" 
                                ng-model="main.location"
                                ng-minlength="5"
                                ng-maxlength="10"
                                required>
                            <div class="help-block" ng-messages="form.location.$error" ng-show="form.location.$touched">
                                <div class="alert alert-danger" role="alert">
                                    <p ng-message="minlength">Your name is too short.</p>
                                    <p ng-message="maxlength">Your name is too long.</p>
                                    <p ng-message="required">Your name is required.</p>
                                </div>
                            </div>         
                        </div>
                    </form>
                </div><!--/tab-pane-general -->
            </uib-tab>
            <uib-tab index="2">
                <uib-tab-heading>
                  <ul class="header">
                    <li class="title">title 3</li>
                    <li class="description">Descr 3</li>
                  </ul>
                </uib-tab-heading>
                <div class="tab-pane-general">
                    TAB THREE
                </div><!--/tab-pane-general -->
            </uib-tab>
        </uib-tabset>
</body>

http://codepen.io/whisher/pen/QEyyzz

Is it a bug ?

Any idea ?

UPDATE

I worked it out in the real app I've set an input with the same name ^^

4

2 回答 2

1

你真的需要两个表单标签吗?因为每个表单标签都有自己的验证。因此,如果您想要对整个选项卡控件进行 1 次验证,那么您只需要放置一个表单标签

于 2016-06-09T09:19:04.077 回答
-1

<form>有相同的名字。因此,如果您更改 first toname1和 second to name2all 将正常工作。

您可以在此处阅读有关角度表单验证的更多信息

于 2016-06-09T09:19:05.137 回答