gpt4 book ai didi

angularjs - 使用 ng-repeat 限制行数

转载 作者:行者123 更新时间:2023-12-01 09:54:08 25 4
gpt4 key购买 nike

我想使用 ng-repeat 在表格中显示最多 4 行。如果超过 4 行,我希望第 5 行出现一个加号,单击它时,将显示数据集中的其余行。我不太确定从哪里开始。

table.table.table-striped.table-bordered
thead
tr
th.spacer.col-md-8
| Products: {{co.products.length}} Total - Click to preview
th.col-md-2
span.qty-ordered Qty Ordered
th.col-md-2
span.co-price Price
tbody
tr ng-repeat="prod in co.products"
td.co-product-name.col-md-6
a () {{prod.name}}
td.col-md-3
span () XX
td.col-md-3
span () {{prod.prices[0].price | currency}}

最佳答案

使用限制过滤器:

tr ng-repeat="prod in co.products | limitTo : limit"
td.co-product-name.col-md-6
a () {{prod.name}}
td.col-md-3
span () XX
td.col-md-3
span () {{prod.prices[0].price | currency}}
tr ng-show='limit' ng-click='limit = undefined'



# controller

$scope.limit = 4;

关于angularjs - 使用 ng-repeat 限制行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32143549/

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