gpt4 book ai didi

routing - 如何根据请求的 URL 的域在 Flask 中路由?

转载 作者:行者123 更新时间:2023-12-03 17:12:04 24 4
gpt4 key购买 nike

我正在尝试根据我正在构建的 Flask 站点的请求 URL 的主机来实现路由。

根据我读到的 hereelsewhere ,似乎这应该是可能的

from flask import Flask
application = Flask(__name__)

application.url_map.host_matching = True

@application.route("/", host="<prefix>.mydomain.com:<port>")
def mydomain(prefix='', port=0, **kwargs):
return 'This is My Domain: with prefix ' + prefix

@application.route("/", host="<prefix>.<project>elasticbeanstalk.com:<port>")
def test(prefix='', project='', port=0, **kwargs):
return 'You are reading from EB ' + project

@application.route("/", host="<host>:<port>")
def catchall(**kwargs):
return 'This is anything'

但这因 404“找不到页面”而失败。我还需要做些什么来使它正常工作吗?链接 SO answer提到“当您将 host_matching 设置为 true 时需要为所有路由指定主机”,但我不确定这意味着什么或它会是什么样子(我认为这就是我在上面所做的)。

如何根据请求的 URL 的域在 Flask 中路由?

如果重要,此站点托管在 AWS Elastic Beanstalk 上。

最佳答案

调试这些情况的一种方法是直接跳到控制台并使用底层函数:

>>> from werkzeug.routing import Map, Rule
>>> m = Map([Rule('/', endpoint='endpoint', host='<host>.example.com:<port>')], host_matching=True)
>>> c = m.bind('open.example.com:888')
>>> c.match('/')
('endpoint', {'host': u'open', 'port': u'888'})

如果不匹配,则会引发 NotFound 异常。

您可以在一行上运行该命令
>>> Map([Rule('/', endpoint='endpoint', host='<host>.example.com:<port>')], host_matching=True).bind('open.example.com:888').match('/')

并获得一个关于你做错了什么的快速反馈循环。从您的代码示例中我唯一无法分辨的是实际主机字符串的外观......这是重要的部分。这就是您需要了解并输入 m.bind 的内容。称呼。因此,如果您能告诉我在您的特定情况下主机字符串是什么样的,我绝对可以为您调试。

您提供的示例主机字符串是:www.myproject-elasticbeanstalk.com。
>>> Map([Rule('/', endpoint='endpoint', host='<prefix>.<project>-elasticbeanstalk.com')], host_matching=True).bind('www.myproject-elasticbeanstalk.com').match('/')
('endpoint', {'prefix': u'www', 'project': u'myproject'})

所以修改后的主机字符串 '<prefix>.<project>-elasticbeanstalk.com'匹配它并将前缀和项目传递到 View 中。也许只是当主机字符串不包含端口号时,您试图匹配端口号?

关于routing - 如何根据请求的 URL 的域在 Flask 中路由?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28544180/

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