gpt4 book ai didi

javascript - 表中的 Angular ng-repeat,添加额外的行

转载 作者:行者123 更新时间:2023-12-02 14:08:35 25 4
gpt4 key购买 nike

我正在使用 ng-repeat 和 Angular 来重复数组的内容。之后,但在同一个表中,我想添加一些带有信息的额外行。但因为它是在 ng-repeat 中,所以我在 {{getCartTotal()}} 上出现 Angular 错误,现在称为无限次。

有没有办法停止 ng-repeat,或者有其他方法在同一元素中的 ng-repeat 之后添加额外的行?

这是我的代码(在 Jade 中)。只有第一个 tr 必须重复。

table.shop_table.woocommerce-checkout-review-order-table
tbody
tr(ng-repeat='product in shoppingCart')
th
{{product.name}}
span.count x {{product.quantity}}
td
span.amount € {{product.price * product.quantity | number:2}}
tr.cart-subtotal(ng-repeat-end)
th Subtotaal
td
span.amount € {{getCartTotal()}}}
tr.shipping
th Verzendkosten
td
span
i
| Tijdelijk gratis!
tr.order-total
th
strong Totaal
td
strong
span.amount € {{getCartTotal())}}

最佳答案

从评论中复制。

ng-repeat-endng-repeat-start 一起使用,也会重复。尝试删除ng-repeat-end

tr(ng-repeat='product in shoppingCart')
th
{{product.name}}
span.count x {{product.quantity}}
td
span.amount € {{product.price * product.quantity | number:2}}
tr.cart-subtotal
th Subtotaal
td
span.amount € {{getCartTotal()}}

关于javascript - 表中的 Angular ng-repeat,添加额外的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39833687/

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