gpt4 book ai didi

javascript - 如何激活 Angular 复选框中的过滤功能?

转载 作者:行者123 更新时间:2023-12-03 06:57:19 25 4
gpt4 key购买 nike

我有带过滤器的 block :

 <form action="">
<input type="checkbox" id="inp1">
<label for="inp1">All items</label>
<input type="checkbox" id="inp2">
<label for="inp2">New today</label>
<input type="checkbox" id="inp3">
<label for="inp3">New this week</label>
<input type="checkbox" id="inp4">
<label for="inp4">Free delivery</label>
</form>

过滤“今天新”和“本周新”:

  $scope.newThisWeek = function(products){
$scope.time = (Date.now() - Date.parse(products.add_update_time));

if ($scope.time <= 604800000) {
return $scope.products;
} else {

return null;
}

};

$scope.newToday = function(products){
$scope.time = (Date.now() - Date.parse(products.add_update_time));

if ($scope.time <= 86400000) {
return $scope.products;
} else {

return null;
}
};

我在那里使用过滤器:

<div class="catalog-item" ng-repeat="product in products |filter:newThisWeek|filter:newToday">
<a href="{{product.external_url}}" class="item-title">{{ product.name }}</a>
</div>

如何激活 Angular 复选框中的过滤功能?

最佳答案

您需要首先使用 ng-model 属性将 html 中的输入绑定(bind)到 $scope:

..
<input type="checkbox" id="inp2" ng-model="newTodayActivated">
<label for="inp2">New today</label>
..other inputs

通过此操作,您可以创建一个 $scope.newTodayActivated 属性,该属性将在复选框状态更改时更新(切换 true/false)。然后您可以在过滤器表达式函数中使用该值:

$scope.newToday = function(products){      
//use $scope.newTodayActivated - as Boolean here in your logic
if($scope.newTodayActivated) {
//do stuff
} else {
}
}

关于javascript - 如何激活 Angular 复选框中的过滤功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37219637/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com