gpt4 book ai didi

python - 使用 Python Bottle 重定向到带有 POST 数据的 url

转载 作者:太空狗 更新时间:2023-10-30 02:11:40 27 4
gpt4 key购买 nike

有什么方法可以在重定向到另一个页面时添加 POST 数据吗?

我已经构建了一个服务,可以在调用该服务时将用户重定向回指定的任何页面。问题是由于复杂且编写错误的重写规则等原因,我无法在 url 上放置任何 GET 参数,因此我需要使用 POST 发送一个值。无论如何添加到 Bottles redirect(return_url) 或在 Python 中使用其他一些库?

最佳答案

你可以构建response,而不是使用bottle的redirect(url)方法

from bottle import route, run, response

@post('/wrong')
def wrong():
response.status = 303
response.set_header('Location', '/hello')
return '"key":"val"' # Enter the body here

@route('/hello')
def hello():
return "Hello World!"

run(host='0.0.0.0', port=8080, debug=True)

关于python - 使用 Python Bottle 重定向到带有 POST 数据的 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21087796/

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