當前位置: 首頁>>代碼示例>>Python>>正文


Python web.ErrorHandler方法代碼示例

本文整理匯總了Python中tornado.web.ErrorHandler方法的典型用法代碼示例。如果您正苦於以下問題:Python web.ErrorHandler方法的具體用法?Python web.ErrorHandler怎麽用?Python web.ErrorHandler使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在tornado.web的用法示例。


在下文中一共展示了web.ErrorHandler方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: get_handlers

# 需要導入模塊: from tornado import web [as 別名]
# 或者: from tornado.web import ErrorHandler [as 別名]
def get_handlers(self):
        # note that if the handlers list is empty we get the default_host
        # redirect fallback instead of a 404, so test with both an
        # explicitly defined error handler and an implicit 404.
        return [('/error', ErrorHandler, dict(status_code=417))] 
開發者ID:tao12345666333,項目名稱:tornado-zh,代碼行數:7,代碼來源:web_test.py

示例2: get_app_kwargs

# 需要導入模塊: from tornado import web [as 別名]
# 或者: from tornado.web import ErrorHandler [as 別名]
def get_app_kwargs(self):
        return dict(default_handler_class=ErrorHandler,
                    default_handler_args=dict(status_code=403)) 
開發者ID:tao12345666333,項目名稱:tornado-zh,代碼行數:5,代碼來源:web_test.py

示例3: _execute_module

# 需要導入模塊: from tornado import web [as 別名]
# 或者: from tornado.web import ErrorHandler [as 別名]
def _execute_module(self, handler, clear, module, method, name=None, **kwargs):
        try:
            def run_method_():
                if method.__name__ == "begin_response":
                    return method(handler, clear, kwargs.pop("chunk", None))
                elif method.__name__ == "begin_render":
                    return method(handler, clear, **kwargs)
                elif method.__name__ == 'begin_request':
                    return method(handler, clear)
                elif method.__name__ == 'complete_response':
                    return method(handler, clear)

            if name:
                if hasattr(handler, 'pattern__'):
                    patt = handler.pattern__

                    if name == patt:
                        url_spec = self.named_handlers.get(name, None)
                        if url_spec:
                            if isinstance(handler, url_spec.handler_class):
                                return run_method_()
                    elif handler.request.re_match_table[name]:
                        return run_method_()

            else:
                pattern__ = getattr(handler, 'pattern__', None)

                def check_(key):
                    non_execute = self.non_executes_modules.get(key, [])
                    if non_execute:
                        for n in non_execute:
                            if isinstance(module, n):
                                return True

                if pattern__ in self.non_executes_modules:
                    if check_(handler.pattern__): return

                if hasattr(handler.request, 're_match_table') and handler.request.re_match_table:
                    for key, match in handler.request.re_match_table.items():
                        if match:
                            if check_(key): return

                if not isinstance(handler, ErrorHandler):
                    return run_method_()

        except BaseException, ex:
            raise 
開發者ID:mqingyn,項目名稱:torngas,代碼行數:49,代碼來源:httpmodule.py


注:本文中的tornado.web.ErrorHandler方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。