0
下面是我們使用的是$watchCollection
$scope.$watchCollection(TwitterDashboardService.getSelectedList, updateList);
由於FAS我所知$watchCollection
觀察家如數組等
但是在這種情況下TwitterDashboardService.getSelectedList
變化的集合是一個函數的代碼。它的定義如下 -
this.getSelectedList = function() {
return data.items.filter(function(item) {
return !!item.selected;
});
};
我無法弄清楚當處理器updateList
會叫什麼名字?
請幫忙。我對角度很陌生。
感謝您的優秀解釋。 – RajSharma