我想使用参数将多个页面路由到示例模板,并让其他静态文件也自动路由:
@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
等。