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 タグの更新をトリガーする最良の方法は何ですか?