我正在對ng-repeat標籤應用大於過濾器。我寫了下面的自定義濾鏡功能:Angularjs:比ng-repeat更大的過濾器
$scope.priceRangeFilter = function (location) {
return location.price >= $scope.minPrice;
};
我用它下面的HTML代碼:
<div ng-repeat="m in map.markers | filter:priceRangeFilter">
是什麼觸發NG-repeat標記的刷新最好的辦法時,$範圍.minPrice已更新?
由SZA說明它不會自動刷新,我取得了minPrice一個錯誤的形式結合。我很抱歉。 – Julien