gpt4 book ai didi

javascript - AngularJS - 在另一个 div 中访问过滤后的数据

转载 作者:行者123 更新时间:2023-11-30 12:23:08 24 4
gpt4 key购买 nike

我有一个过滤器应用于搜索功能,用户在文本框中键入搜索查询,ng-repeat 中的结果被过滤。我的代码是:

<div class="number-results">xxxxxx results found</div>
<div ng-repeat="product in products | topProductsSearchFilter:searchData" class='top-product-icon' ng-click="productClicked(product)">
<img class='top-product-icon-img' ng-src="{{product.thumbnail}}">
<div class='top-product-icon-title' ng-bind="product.title"></div>
</div>

如您所见,我在 ng-repeat 中调用了过滤器:topProductsSearchFilter:searchData

searchData 是搜索文本框的 ng-model:

<input ng-model="searchData" type="text"/>

我编写的过滤器生成一个产品类型的 JSON 数组。在 html 中,我想在此 div 中显示过滤器返回的结果数:

<div class="number-results">xxxxxx results found</div>

我的问题是如何最好地访问 ng-repeat div 标记之外的 JSON 数组的长度。

最佳答案

您可以在 ng-repeat 表达式中创建过滤列表/别名并获取其长度:

<div ng-repeat="item in filteredItems = (items | someFilter)">
{{item}}
</div>
<div>number of results: {{filteredItems.length}} out of {{items.length}}</div>

关于javascript - AngularJS - 在另一个 div 中访问过滤后的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30366428/

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