繁体   English   中英

name属性中的angular ngRepeat $ index

[英]angular ngRepeat $index in name attribute

<div ng-repeat="fod in form.order_details">
...
    <td class="control-cell">
        <span ng-class="{error: prForm['qty_'+$index].$error.required && showValidationMessages}">
            <input type="number" name="{{'qty_' + $index}}" ng-model="fod.qty" ng-change="qtyPerKindCalc($index);" id="{{'qty_' + $index}}" required />
            <span ng-show="prForm['qty_'+$index].$error.required && showValidationMessages" class="error-msg">This field required</span>
        </span>
    </td>
...
</div>

ngRepeat,我有必要的字段。 我有表单对象$ scope.prForm - 我看到$ error。 问题在于名称=“{{'qty_'+ $ index}}”。 在$ scope.prForm中我有字段

{{'qty_' + $index}}: instantiate.c

但我需要

qty_0: instantiate.c

如何在name属性中进行良好的{{'qty_'+ $ index}}操作?

很容易:

name="qty_{{$index}}"

这是一个了解它如何工作的插件

尝试这个:

id="qty_{{$index}}"  

:)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM