我正在对 ng-repeat 标签应用大于过滤器。我编写了以下自定义过滤器功能:
$scope.priceRangeFilter = function (location) {
return location.price >= $scope.minPrice;
};
我在以下 HTML 代码中使用它:
<div ng-repeat="m in map.markers | filter:priceRangeFilter">
更新 $scope.minPrice 时触发 ng-repeat 标签刷新的最佳方法是什么?