使用Bottle或Flask将多个页面路由到具有参数的相同模板

时间:2018-03-04 18:23:43

标签: python bottle

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

@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('>', ''),但这是一个肮脏的黑客,我想有一种更简洁的方式从test1获得hello2@route等。

0 个答案:

没有答案