0

在这段代码中,

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 ):
        ...

是什么#.*#意思?

它是旧语法吗?因为我在当前的瓶子文档中找不到它。

4

1 回答 1

4

这是命名正则表达式路由的旧语法。见本段

于 2013-05-02T06:26:04.497 回答