0
これはdjangoの私の投票アプリケーションのタブのview.py
です。私はエラーをデバッグすることはできません:これは、 'The Codex'チャンネルの 'my first django app'のYouTubeコレクションの6番目のビデオから取ったものです。助けてください?/polls/contextのTypeErrorは、RequestContextではなくdictでなければなりません。
from django.shortcuts import render
from django.http import HttpResponse
from django.template import loader, RequestContext
from .models import Question
def index(request):
latest_questions = Question.objects.order_by('-pub_date')[:5]
template = loader.get_template('polls/index.html')
context = RequestContext(request, {
'latest_questions': latest_questions
})
return HttpResponse(template.render(context))
def detail(request, question_id):
return HttpResponse("This is the detail view of the question: %s" %question_id)
def results(request, question_id):
return HttpResponse("These are the results of the question: %s" %question_id)
def vote(request, question_id):
return HttpResponse("Vote on question: %s" %question_id)
あなたのDjangoバージョンの公式ドキュメントを投稿する前に気になりましたか? –