使用Python Bottle对多个路径和视图使用相同的功能

时间:2018-02-23 23:40:12

标签: python bottle

使用Python Bottle微框架,我使用:

@route('/')
@view('index.tpl')
def index():
    context = {'request': request, 'custom': ''}
    return (context)

@route('/test')
@view('test.tpl')
def test():
    context = {'request': request, 'custom': ''}
    return (context)

@route('/test2')
@view('test2.tpl')
def test2():
    context = {'request': request, 'custom': ''}
    return (context)

但代码中存在一些冗余。在这种情况下,有没有办法让路由更简单?

注意:我正考虑尽快转移到Flask,所以我会对两种解决方案感兴趣。

0 个答案:

没有答案