我有一个典型的WSGI应用程序,如下所示:

app = webapp2.WSGIApplication([
    ('/site/path/one',     'package.module.ClassOne'),
    ('/site/path/two',     'package.module.ClassTwo'),
    ('/site/path/three',   'package.module.ClassThree'),
])

我希望以后能够在我的应用程序中检索路由列表,例如在ClassOne中:
class ClassOne(webapp2.RequestHandler):
    def get(self):
        print ''' list of routes (e.g. '/site/path/one', '/site/path/two', etc.) '''

最佳答案

看起来WSGIApplication有一个router属性
Router

def __repr__(self):
        routes = self.match_routes + [v for k, v in \
            self.build_routes.iteritems() if v not in self.match_routes]

        return '<Router(%r)>' % routes

您的wsgiApplication实例是webapp2.RequestHandler的属性
所以我认为request.app.router
所以,希望有一个更偏激的方式,但如果不是上述应该工作?
webapp2有非常好的可搜索源代码,可在http://webapp2.readthedocs.io/en/latest/

关于python - 在webapp2中,如何获取所有路由URI的列表?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13078892/

10-09 00:02