0

我想计算一列中值的总和。例如:

@items = Item.find_all_by_cart_id(cart)

项目有列数量。我想要@items 数量的总和。

4

2 回答 2

1
items_quantity = @items.map(&:quantity).sum
于 2013-05-13T14:05:37.370 回答
1

尝试这个

@items = Item.find_all_by_cart_id(cart).sum(:quantity)
于 2013-05-13T14:09:44.053 回答