0
我只是成功地導入了通用視圖,當我想要在視圖中使用它們時,問題出現了,服務器只是給出了一個指向「。」的錯誤。 (期間)在generic.ListView ... 這是我目前正在處理的代碼。Django通用視圖用法錯誤
def IndexView(generic.ListView):
template_name = 'polls/index.html'
context_object_name = 'question_list'
def get_qureyset(self):
return Question.objects.order_by('-published_date')[:5]