gpt4 book ai didi

python - 如何使用 flask.redirect 发送 POST 请求?

转载 作者:行者123 更新时间:2023-12-05 00:47:59 29 4
gpt4 key购买 nike

我正在尝试创建一个 flask 服务,我想将来自一个 request.form 的数据以 json 格式发送到另一个 url,请谁能帮我实现这一目标?

redirect(url_for('any_method'), json = json.dumps(my_form_dict))

当我尝试执行上述代码时,出现以下错误:

TypeError: redirect() got an unexpected keyword argument 'json' The above is the error here.

最佳答案

您可以使用 307 状态码重定向 POST 请求。使用:

redirect(url_for('any_method', json=json.dumps(my_form_dict)), code=307)

有关更多信息,请参阅此答案: Make a POST request while redirecting in flask

关于python - 如何使用 flask.redirect 发送 POST 请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54690994/

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