我想总结使用JSON数组动态添加的产品数量。

在上面的示例中,如何获得乘积之和?

最佳答案

使用lodash

假设您要求和的值位于名为“ price”的属性中:

{{_(form.products).mapValues('price').sum()}}


您可能需要先将lodash纳入您的范围。在控制器中,如下所示:

scope._ = _;


this approach

关于javascript - 如何在AngularJS ng-repeat中求和Json数组值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35514511/

10-10 00:28