{
"data": {
"name": "NAME",
"tests": [
{
"testname": "abc",
"relatedResource": [
{
"accessType": "fttb",
},
{
"accessType": "fttn",
}
]
},
{
"testname": "xyz",
"relatedResource": [
{
"accessType": "fttp",
},
{
"accessType": "fttp",
}
]
}
]
}
}
$scope.data=response.data.tests;
<div ng-repeat="l in data">
<div ng-repeat="i in l.relatedResource">
{{i.accessType}}
</div>
</div>
請更新您的問題使用'NG-repeat'顯示實際的HTML代碼與相應的,沿着理想來自控制器的代碼。 –
我可以用單個ng-repeat迭代數據。但我需要位於relatedResources的對象數組。 –
它的做工精細的權利,我可以看到輸出在我plunker作爲FTTB FTTN FTTP FTTP –