如何在角度js
中执行以下类型代码 <tr ng-repeat="x in gLists" >
<td ng-repeat="z in gfLists" >{{ 'x.'+{{z.field}}} </td>
</tr>`
答案 0 :(得分:0)
这是你的代码
s0
答案 1 :(得分:0)
使用bracket notation作为属性访问者:
<!--
<tr ng-repeat="x in gLists" >
<td ng-repeat="z in gfLists" >{{ 'x.'+{{z.field}}} </td>
</tr>
-->
<tr ng-repeat="x in gLists" >
<td ng-repeat="z in gfLists" >{{ x[z.field] }} </td>
</tr>
括号表示法首先评估括号的内容,并将其用作所需属性的标识符。