2014-01-10 3 views

답변

1

이게 당신이 찾고 있는게 있니?

당신은

cherrypy.tree.apps[mount_point].root 

루트를 통해 장착 된 URL 핸들러에 액세스 할 수 있습니다 항상 마운트 지점에 인스턴스를 장착한다. 이 도움이

def reverse(cls): 
    # get link to a class type 
    for app_url in cherrypy.tree.apps.keys(): 
     if isinstance(cherrypy.tree.apps[app_url].root, cls): 
      # NOTE: it will return with the first mount point of this class 
      return app_url 

how to get url of an object in cherrypy?

희망 : 그래서 역 기능과 같을 것이다!