$scope.totalPrice = function () { return $scope.addcartProduct.reduce(function (money, product) { return money += (product.quantity * product.priceAfter); }, 0); }
这 reduce 和 forEach 很类似。不错!不用开变量