1

当我在我的应用程序中进行重定向时,我想在帖子中发送一些变量。

场景是这样的

def redirect_with_post():
  post_variable = "i am a post variable"
  return HttpRedirect(location="/confirm?id=23&user=user1")

# 现在我想发送
post_variable

  • 我想在重定向时发送变量而不是查询字符串作为发布请求。

使用的工具和软件:-

  • 蟒蛇,webob,路线
4

1 回答 1

1

重定向由客户端(您的浏览器)执行。而且它只支持单个 Location 标头。您不能通过重定向发送 POST 数据。见https://en.wikipedia.org/wiki/HTTP_302

于 2013-02-17T14:49:24.067 回答