gpt4 book ai didi

python - 在 Python Cloud Function 之后重定向

转载 作者:太空宇宙 更新时间:2023-11-04 04:33:32 25 4
gpt4 key购买 nike

我的 HTML 表单有

action="https://us-central1-PROJECT_ID.cloudfunctions.net/FUNCTION_ID"

method="post" target="_blank"

该链接将电子邮件地址字符串发送到 Python 3.7 Beta 运行时中的 Google Cloud Functions。

函数正确执行并与第三方 API 交互。

函数运行后加载一个空白页面

OK

作为唯一的内容。我想从这里重定向回我的网站,但我无法停止弄清楚如何做到这一点。我试过了

  • 在我的 Python 函数末尾放置一个 urllib.request
  • 执行 XMLHttpRequest
  • 改变

    target="_blank"

    target="_self"

正确的做法是什么?

最佳答案

Google Cloud Functions 使用 Flask在引擎盖下为您的端点提供服务,因此您只需返回 redirect最后:

from flask import redirect

def test(request):
return redirect('https://google.com')

关于python - 在 Python Cloud Function 之后重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52239034/

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