gpt4 book ai didi

google-app-engine - Google 应用引擎重定向到绝对 uri

转载 作者:太空宇宙 更新时间:2023-11-03 15:25:18 30 4
gpt4 key购买 nike

我正在使用带有 python 和 webapp2 的谷歌应用引擎,我找不到使用绝对 uri 重定向到外部网站的方法。

例如:

class Landing(BaseHandler):
def get(self):
self.render("landing.html")

def post(self):
name=self.request.get("name")
if name == "yes"
self.redirect("/")
else:
self.redirect("http://example.com") **This is the problem as I want to redirect to an absolute url.

self.redirect 总是重定向到一个相对 url。我怎样才能重定向到绝对网址?我想这一定很容易,但我找不到路。

最佳答案

对我来说很好,不会重定向到一个相对的 url。请检查您的主机、浏览器和缓存的配置。

GAE 只是将我重定向到 example.com,在我的开发和生产服务器上使用它

注意 example.com 重定向到 http://www.iana.org/domains/example/

这可能会让您感到困惑。

尝试使用例如 self.redirect("http://www.facebook.com")。这会将您重定向到 Facebook。简单。

关于google-app-engine - Google 应用引擎重定向到绝对 uri,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14136592/

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