瓶子0.8.0:这条路线规格是什么意思?

时间:2013-05-02 06:09:33

标签: python python-2.7 bottle

在这段代码中,

def setRoute(route, method='GET'):
    def decorator(f):
        f.route=route
        f.method=method
        return f
    return decorator
...

class MyClass:

    @setRoute( '/:action#.*#',method='POST' )
    def acceptMessage( self, action ):
        ...

#.*#是什么意思?

这是旧语法吗?因为我在当前的bottle documentation中找不到它。

1 个答案:

答案 0 :(得分:4)

这是命名正则表达式路由的旧语法。请参阅this paragraph