这在某种程度上是对我之前的问题的扩展,但在解决了这个问题之后,我得到了不同的答案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})