0

这在某种程度上是对我之前的问题的扩展,但在解决了这个问题之后,我得到了不同的答案AttributeError'_RatingsDescriptor' object has no attribute 'cumulative_score'在我看来,这是在尝试做这样的事情时读到 的:

def index(request):
    thing_list = Thing.ratings.cumulative_score()
    return render(request, 'index.html', {'thing_list':thing_list})

我的模型:

from ratings.models import Ratings

class Thing(models.Model):
    user = models.ForeignKey(User)
    ...
    ratings = Ratings()

在使用django-simple-ratings应用程序时。该链接引用cumulative_score了该模块中定义的位置。如何对多个对象使用累积分数?谢谢你的想法!


编辑:views.py:

def index(request):
    thing_list = Thing.objects.all()
    thing_list.ratings.cumulative_score()
    return render(request, 'index.html', {'thing_list':thing_list})
4

1 回答 1

2

它是一个实例方法,因此您必须首先从数据库中检索事物。

t = Thing.objects.get(xxxx)
t.ratings.cumulative_score()

于 2013-01-09T02:41:27.710 回答