AttributeError: 'QuerySet' object has no attribute 'ratings'
在我看来,当我试图做这样的事情时,我得到了一个:
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)
...
rating = Ratings()
在使用django-simple-ratings应用程序时。该链接引用cumulative_score
了该模块中定义的位置。如何使用累积分数?谢谢你的想法!