我想解决Django NoReverseMatch

问题描述 投票:1回答:2

这里有一个问题。我不知道如何解决这个问题。请帮我。 errorenter image description here

源代码

results.html

<h1>{{ question.question_text }}</h1>

<ul>
  {% for choice in question.choice_set.all %}
    <li>{{ choice.choice_text }} -- {{ choice.votes }} vote{{ choice.votes|pluralize }}</li>
  {% endfor %}
</ul>

<a href="{% url 'polls:detail' question_id %}">Vote again?</a>

views.py民调

from django.shortcuts import get_object_or_404, render
from django.http import HttpResponseRedirect, HttpResponse
from django.urls import reverse
from polls.models import Question, Choice

# Create your views here.
def index(request):
    latest_question_list = Question.objects.all().order_by('-pub_date')[:5]
    context = {'latest_question_list':latest_question_list}
    return render(request, 'polls/index.html', context)

def detail(request, question_id):
    question = get_object_or_404(Question, pk=question_id)
    return render(request, 'polls/detail.html', {'question': question})

def vote(request, question_id):
    question = get_object_or_404(Question, pk=question_id)
    try:
        selected_choice = question.choice_set.get(pk=request.POST['choice'])
    except (KeyError, Choice.DoesNotExist):
        return render(request, 'polls/detail.html',{
            'question': question,
            'error_message': "You didn't select a choice.",
        })
    else:
        selected_choice.votes += 1
        selected_choice.save()
        return HttpResponseRedirect(reverse('polls:results', args=(question.id,)))

def results(request, question_id):
    question = get_object_or_404(Question, pk=question_id)
    return render(request, 'polls/results.html', {'question': question})

不知何故,这里似乎有一个错误。我不认为相反的是民意调查:结果。当然这是猜想。

urls.py-fistsite

from django.contrib import admin
from django.urls import path, include
from polls import views

urlpatterns = [
    path('polls/', include('polls.urls')),
    path('admin/', admin.site.urls), 
    path('', views.index, name='index'),
]

urls.py民调

from django.urls import path
from . import views


app_name = 'polls'
urlpatterns = [
    path('', views.index, name='index'),
    path('<int:question_id>/', views.detail, name='detail'),
    path('<int:question_id>/results/', views.results, name='results'),
    path('<int:question_id>/vote/', views.vote, name='vote')
]
python django webserver
2个回答
1
投票

您尚未将变量question_id传递到模板上下文中。

在模板中,您可以使用问题对象

<a href="{% url 'polls:detail' question.id %}">Vote again?</a>

1
投票
<a href="{% url 'polls:detail' question_id %}">Vote again?</a>

results.html的上线改为

<a href="{% url 'polls:detail' question.id %}">Vote again?</a>
© www.soinside.com 2019 - 2024. All rights reserved.