2

我遇到了一个有趣的 Angular 验证问题。我需要确保选择了单选按钮(加载时它们可能没有默认值)。单选按钮的值使用ng-repeat. 整个事情也发生在另一个ng-repeat用户列表中。

问题是我必须在每组name相关单选按钮上设置一个唯一/动态属性,否则选择一个将取消选择不同行中的其他按钮。基于属性的验证,我似乎找不到在需要和表达式中使用这个唯一/动态名称的方法。nameng-classng-show

这是不起作用的: ng-show="userFormRow.service-{{$index}}.$invalid"

这是上下文中的代码示例:

<table class='table table-striped table-bordered'>
    <tbody>
      <tr ng-repeat="u in users"
          ng-form="userFormRow">
        <td>
          <!-- THIS is having an issue determining the name of this form item since I need to generate a dynamic one here-->
          <div class="form-group"
               ng-class="{'has-error': userFormRow.service-{{$index}}.$invalid }">
            <label class="control-label center-block">Service</label>
            <div class="radio-inline" ng-repeat="o in serviceOptions">
              <label>
                <!-- HERE is where I define the unique name attribute based on the index of the table repeater -->
                <input type="radio"
                       name="service-{{$parent.$index}}"
                       value="{{::o}}"
                       ng-model="u.Service"
                       ng-required="!u.Service"> {{::o}}
              </label>
            </div>

            <!-- THIS is having an issue determining the name of this form item since I need to generate a dynamic one here-->
            <p class="help-block" ng-show="userFormRow.service-{{$index}}.$invalid">A service must be selected!</p>
          </div>
        </td>
      </tr>
    </tbody>
  </table>

这是一个完整的代码示例。http://codepen.io/chrismbarr/pen/eNoGLJ?editors=101 检查控制台是否有错误

4

1 回答 1

2

您应该使用括号表示法来访问变量对象属性:

ng-show="userFormRow['service-' + $index].$invalid"

和 ngClass 一样:

ng-class="{'has-error': userFormRow['service-' + $index].$invalid }"

演示http ://codepen.io/anon/pen/rVbYpG?editors=100

于 2015-08-13T14:36:00.100 回答