我在我的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'
我想发布到此网址以及重定向到该网址。知道怎么样?