Django使用帖子数据重定向到url

时间:2016-08-30 13:01:52

标签: python django

我在我的views.py中,我需要使用帖子请求和帖子数据转到网址。

我尝试了HttpResponseRedirect,但它没有将后期数据作为参数。

class WebPaymentView(FormView):

    template_name = "payment/payment.html"
    form_class = NameForm

    def form_valid(self, form):
        # code
        return HttpResponseRedirect(url, data=data, content_type="application/x-www-form-urlencoded")

最后一行给出错误:

  

TypeError:__ init __()得到了一个意外的关键字参数'data'

我想发布到此网址以及重定向到该网址。知道怎么样?

1 个答案:

答案 0 :(得分:1)

服务器端无法重定向用户并使其成为发布请求。基于共享的简单代码,我认为您正在寻找的是action attribute of the Form html tag