我需要從數組中獲取具有特殊屬性「類型」的對象。這些對象我將分配給範圍。我怎樣才能做到這一點?如何從數組中獲取特定對象的屬性?
下面的方法對我來說沒有解決。
$scope.vendors = {}
$scope.clients = {}
$scope.loadCounterparties = function() {
Counterpartie.query(function(response) {
$scope.vendors = response.type.Vendor;
$scope.clients = response.type.Client
});
};
響應物體看起來像這樣
提前感謝!
謝謝你,丹尼斯! –