gpt4 book ai didi

python - 使用 Bottle 或 Flask 将多个页面路由到同一个模板,并带有参数

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

我想使用参数将多个页面路由到示例模板,并让其他静态文件也自动路由:

@route('/test1')
@route('/hello2')
@route('/page3')
@view('tpl/page.html')
def page():
context = {'request': request, 'pagename': ??}
return (context)

@route('/<filename>')
def files(filename):
return static_file(filename, root='./static/')

我希望 page.html 显示请求名称:

<div>This is the page that was requested: {{pagename}} </div>

我期望在这里:

This is the page that was requested: hello2

如何将多个页面定向到同一个模板,并访问页面名称?

我尝试了 str(request).split('example.com/')[1].replace('>', '') 但这是一个肮脏的黑客,我想有一个从 @route 获取 test1hello2 等的更简洁的方法。

最佳答案

你可以这样做:

@route('/test1', route_name='test1')
@route('/hello2', route_name='hello2')
@route('/page3', route_name='page3')
@view('tpl/page.html')
def page(route_name):
context = {'request': request, 'pagename': route_name}
return (context)

Flask 会自动将不匹配的参数传递给您的路由。

关于python - 使用 Bottle 或 Flask 将多个页面路由到同一个模板,并带有参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49098792/

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