顯示嵌套NG重複內部變量如何在角JS執行以下類型的代碼如何角JS
<tr ng-repeat="x in gLists" >
<td ng-repeat="z in gfLists" >{{ 'x.'+{{z.field}}} </td>
</tr>`
顯示嵌套NG重複內部變量如何在角JS執行以下類型的代碼如何角JS
<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>
使用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>
括號符號首先評估括號的內容並將其用作標識符期望屬性的權限。
非常感謝你....我完成了。 –
如果答案有效,請將其標記爲已接受,以便其他人知道問題已解決。 – georgeawg
試試這個。刪除外括號x。{{z.field}} –
問題句法 - reg。對於多行代碼,將光標放在新行上,按下'ctrl + k'或'{}'按鈕。從移動設備開始之前,有3個換行符和4個空格。然後你會得到一個合適的格式化代碼 –
但我需要執行外部代碼角度腳本只是看到像先執行z.field並給出結果x.name然後還想動態執行{{x.name}}。 –