gpt4 book ai didi

python - Django 教程中的表单提交一直失败

转载 作者:行者123 更新时间:2023-11-28 19:57:43 24 4
gpt4 key购买 nike

我在Django tutorial (part 4)并尝试创建一个允许用户选择投票答案的表单。问题加载正确,但是当我单击“投票”(即选择选项并提交表单)时,以下错误不断显示:

Page not found (404)
Request Method: POST
Request URL: http://localhost:8000/polls/vote/6
Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order:
^polls/ ^$ [name='index']
^polls/ ^(?P<poll_id>\d+)/$ [name='detail']
^polls/ ^(?P<poll_id>\d+)/results/$ [name='results']
^polls/ ^(?P<poll_id>\d+)/vote/$ [name='vote']
^admin/
The current URL, polls/vote/6, didn't match any of these.

这是 detail.html 中的代码,其格式如下:

{{ poll.question }}

{% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}

<form action="/polls/vote/{{ poll.id }} " method="post">
{% csrf_token %}
{% for choice in poll.choice_set.all %}
<input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}" />
<label for="choice{{ forloop.counter }}">{{ choice.choice_text }}</label><br />
{% endfor %}
<input type="submit" value="Vote" />
</form>

我怀疑问题出在 <form action="/polls/vote/{{ poll.id }} " method="post"> 行但我不确定如何修复它。

最佳答案

您的投票 ID 和 vote 操作已反转。

您的网址格式为:

^polls/ ^(?P<poll_id>\d+)/vote/$ [name='vote']

但是您的表单操作指向 vote/id。反转那些:

<form action="/polls/{{ poll.id }}/vote" method="post">

请注意,本教程实际上使用了不同的方法来生成该 URL;它使用:

<form action="{% url 'polls:vote' poll.id %}" method="post">

哪里url filter根据 polls:vote 路由配置和当前投票对象的 ID (poll.id),为您生成正确的 URL。

使用 {% url routename arguments %} 可以让您以后更轻松地更改路由,而不必再更正所有模板。

关于python - Django 教程中的表单提交一直失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13181945/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com