試圖做這樣的事情在我看來,當我得到一個AttributeError: 'QuerySet' object has no attribute 'ratings'
:Django的:QuerySet對象有沒有屬性
def index(request):
thing_list = Thing.ratings.cumulative_score()
return render(request, 'index.html', {'thing_list':thing_list})
我的模型:當使用django-simple-ratings應用
from ratings.models import Ratings
class Thing(models.Model):
user = models.ForeignKey(User)
...
rating = Ratings()
。這link參考其中cumulative_score
在該模塊中定義。我如何使用累積分數?感謝您的想法!
發佈完整的追蹤(pastebin,...)? – DanielB