gpt4 book ai didi

python - bottle:全局路由过滤器

转载 作者:行者123 更新时间:2023-11-28 22:40:41 26 4
gpt4 key购买 nike

我将 bottle 用于一个显示日历并允许用户指定年份和月份的简单应用。定义了以下路由:
'/' # 当前年份和当前月份
'/year' #年和当月
'/year/month' #年月

但是,无法识别末尾带有额外/的路由。例如。 '/2015' 可以,但 '/2015/' 不行。为了克服这个问题,我使用了正则表达式 routing filter .这行得通,但让我为每条路线定义一个模式,然后明确检查路线是否以“/”结尾。我想定义一个全局过滤器,它从请求 url 的末尾删除额外的斜杠(如果存在的话)。

from bottle import route, run, template
import calendar
import time

CAL = calendar.HTMLCalendar(calendar.SUNDAY)
Y, M = time.strftime('%Y %m').split()

@route('/')
@route('/<year:re:\d{4}/?>')
@route('/<year>/<month:re:\d{1,2}/?>')
def cal(year = Y, month = M):
y = year if year[-1] != '/' else year[:-1]
m = month if month[-1] != '/' else month[:-1]
return template(CAL.formatmonth(int(y), int(m)))

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

最佳答案

我建议不要创建重复的路由,而是建议使用以斜杠结尾的 url 强制执行严格的 url 架构,并鼓励客户通过从不以斜杠结尾的 url 重定向来使用它,例如使用以下路由:

@route('<path:re:.+[^/]$>')
def add_slash(path):
return redirect(path + "/")

(顺便说一句,这是 django 的 default behavior )。

关于python - bottle:全局路由过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33338375/

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