我需要從ng-click中獲取當前對象,因爲我使用的是orderBy,因此它給了我相對錯誤的索引到範圍對象。理想情況下,我希望能夠點擊對象(縮略圖)並讓$ scope.activePerson獲得所有對象值。Angular - 獲取重複對象
[
{
'name': 'john'
},
{
'name': 'toby'
},
{
'name': 'sarah'
}
]
這是非常簡單,我真正的對象有超過30 KV對和子對象:
我的數據結構如下。我重複的有10個對象(分批4個)。
我現在的HTML是:
.item.fourth(ng-repeat="person in people | orderBy:'-name' " ng-show="$index <= 3" nid="{{person.guid}}"
感謝
不用擔心關於索引....只是將整個對象傳遞給ng-click函數。也看看'limitTo:length:start'過濾器 – charlietfl