这就是我目前在查询集中获得每个object.balance的总数。感觉不对。有没有更好的办法? (我很难解释/写下这个问题,所以只看下面的代码:))
# models.py
...
class Foo(models.Model):
...
balance = models.DecimalField(
max_digits=10,
decimal_places=2,
)
...
...
# utils.py
...
def get_the_total():
objects = Foo.objects.all()
total_balance = 0
for object in objects:
total_balance += object.balance
return total_balance
...