gpt4 book ai didi

angularjs - 如何在 AngularJS 过滤器中从数组中排除对象?

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

我想以无序列表的形式显示商店列表。我想从所有商店中排除“currentShop”。我写了这样的内容:

<ul class="dropdown-menu dropdown-menu-default">
<li ng-repeat="shop in user.account.shops | filter:!currentShop}">
<a href="#/profile">
<i class="icon-user"></i> {{shop.name}} </a>
</li>
</ul>

我哪里错了?

最佳答案

Here你有一个有效的例子。您可以按范围表达式进行过滤

ng-repeat="item in list | filter: myExpression"

定义您的过滤函数;

$scope.myExpression= function(shop) {
return shop.id !== $scope.current.id;
};

关于angularjs - 如何在 AngularJS 过滤器中从数组中排除对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29524021/

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