gpt4 book ai didi

python - 你如何接受 Python Bottle 服务器中的任何 URL?

转载 作者:太空狗 更新时间:2023-10-29 17:40:31 25 4
gpt4 key购买 nike

使用 Bottle Sehttp://bottlepy.org/docs/dev/routing.html#wildcard-filters

我想接受任何 url,然后对该 url 做一些事情。

例如

@bottle.route("/<url:path>")
def index(url):
return "Your url is " + url

这很棘手,因为 URL 中有斜线,而 Bottle 由斜线分割。

最佳答案

基于新的 Bottle (v0.10),使用 re 过滤器:

@bottle.route("/<url:re:.+>")

您也可以使用旧参数来做到这一点:

@bottle.route("/:url#.+#")

关于python - 你如何接受 Python Bottle 服务器中的任何 URL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8171618/

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