我应该在这里使用HttpResponseRedirect吗?

时间:2014-03-04 00:38:10

标签: python django

我正在使用Django教程进行Tango,我已经成功完成了教程,但我在official Django Polls tutorial注意到了以下内容:

def vote(request, question_id):
p = get_object_or_404(Question, pk=question_id)
try:
    selected_choice = p.choice_set.get(pk=request.POST['choice'])
except (KeyError, Choice.DoesNotExist):
    # Redisplay the question voting form.
    return render(request, 'polls/detail.html', {
        'question': p,
        'error_message': "You didn't select a choice.",
    })
else:
    selected_choice.votes += 1
    selected_choice.save()
    # Always return an HttpResponseRedirect after successfully dealing
    # with POST data. This prevents data from being posted twice if a
    # user hits the Back button.
    return HttpResponseRedirect(reverse('polls:results', args=(p.id,)))

此处需要注意的部分是“在成功处理POST数据后始终返回HttpResponseRedirect”。但是,在Tango with Django教程中:

def add_page(request, category_name_url):
context = RequestContext(request)

category_name = decode_url(category_name_url)

if request.method == 'POST':
    form = PageForm(request.POST)

    if form.is_valid():
        page = form.save(commit=False)

        try:
            cat = Category.objects.get(name=category_name)
            page.category = cat
        except Category.DoesNotExist:
            return render_to_response('rango/add_category.html', {}, context)

        page.views = 0
        page.save()

        return category(request, category_name_url)
    else:
        print(form.errors)
else:
    form = PageForm()

return render_to_response('rango/add_page.html',
                         {'category_name_url': category_name_url,
                          'category_name'    : category_name,
                          'form'             : form}, context)

请注意,尽管使用了POST数据,但缺少HttpResponseRedirect。我不知道这是否正确?

我看过这里:Django HttpResponseRedirect

此处:Django: HttpResponseRedirect not working

在这里:Django HttpResponseRedirect vs render_to_response - how to get a login form to behave the way I need it to

另外,在这里:Django form redirect using HttpResponseRedirect

最后在这里:Django: What is the difference b/w HttpResponse vs HttpResponseRedirect vs render_to_response

我仍然不完全了解如何使用HttpResponseRedirect。请帮忙。

提前感谢任何回复的人。

2 个答案:

答案 0 :(得分:2)

这是在服务器端处理初始POST请求后阻止用户重新提交表单的常见做法。

如果您在处理POST请求后未使用HttpResponseRedirect,则后果可能是您无意中将多个重复行插入数据库或多次发送确认电子邮件等。

答案 1 :(得分:0)

  

请注意,尽管使用了POST数据,但缺少HttpResponseRedirect。我不知道这是否正确?

两者都是“正确的”并且可以正常工作。但是,如果用户点击浏览器上的后退或刷新按钮,则从UI设计角度来看,阻止重定向重新提交是一种更好的方法。