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


Python ErrorDict.as_text方法代碼示例

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


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

示例1: error

# 需要導入模塊: from django.forms.util import ErrorDict [as 別名]
# 或者: from django.forms.util.ErrorDict import as_text [as 別名]
    def error(
        self,
        request,
        status_code,
        error_dict=None,
        ):
        """
        Handles errors in a RESTful way.
        - appropriate status code
        - appropriate mimetype
        - human-readable error message
        """

        if not error_dict:
            error_dict = ErrorDict()
        response = HttpResponse(mimetype=self.mimetype)
        response.write('%d %s' % (status_code,
                       STATUS_CODE_TEXT[status_code]))
        if error_dict:
            response.write('''

Errors:
''')
            response.write(error_dict.as_text())
        response.status_code = status_code
        return response
開發者ID:klpdotorg,項目名稱:KLP-MIS,代碼行數:28,代碼來源:Treeresponder.py

示例2: error_response

# 需要導入模塊: from django.forms.util import ErrorDict [as 別名]
# 或者: from django.forms.util.ErrorDict import as_text [as 別名]
def error_response( error_code, error_message, error_class,  error_dict = None):
    resp_dict = {}
#    response = HttpResponse()
    response = HttpResponseServerError()

    resp_dict['error code'] = error_code
    resp_dict['error message'] = error_message
    resp_dict['error class'] = error_class
#    if error_code == 500:
#        response.status_code = error_code
    

    
    if error_dict:
        error_dict = ErrorDict(error_dict)
        resp_dict['error message'] += '\n%s'%error_dict.as_text() 
    logger.debug('resp_dict%s' %resp_dict)
    response.write(json.dumps(resp_dict))
    logger.debug('response.content %s' %response.content)
    return response
開發者ID:mlclemente,項目名稱:notredam,代碼行數:22,代碼來源:decorators.py


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