$scope.totalPrice = function () { return $scope.addcartProduct.reduce(function (money, product) { return money += (product.quantity * product.priceAfter); }, 0); }
这 reduce 和 forEach 很类似。不错!不用开变量
时间: 2024-10-07 09:36:08
$scope.totalPrice = function () { return $scope.addcartProduct.reduce(function (money, product) { return money += (product.quantity * product.priceAfter); }, 0); }
这 reduce 和 forEach 很类似。不错!不用开变量