• HttpStatus各种状态


    1. JS.ns("JS.HTTPStatus","JS.XMLHttpRequest");  
    2.  /**  
    3.   * FC 2616 HTTP1.1规范的HTTP Status状态常量  
    4.   * http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10  
    5.   */  
    6.   
    7. JS.HTTPStatus = {  
    8.         //Informational 1xx  
    9.         '100' : 'Continue',  
    10.         '101' : 'Switching Protocols',  
    11.         //Successful 2xx  
    12.         '200' : 'OK',  
    13.         '201' : 'Created',  
    14.         '202' : 'Accepted',  
    15.         '203' : 'Non-Authoritative Information',  
    16.         '204' : 'No Content',  
    17.         '205' : 'Reset Content',  
    18.         '206' : 'Partial Content',  
    19.         //Redirection 3xx  
    20.         '300' : 'Multiple Choices',  
    21.         '301' : 'Moved Permanently',  
    22.         '302' : 'Found',  
    23.         '303' : 'See Other',  
    24.         '304' : 'Not Modified',  
    25.         '305' : 'Use Proxy',  
    26.         '306' : 'Unused',  
    27.         '307' : 'Temporary Redirect',  
    28.         //Client Error 4xx  
    29.         '400' : 'Bad Request',  
    30.         '401' : 'Unauthorized',  
    31.         '402' : 'Payment Required',  
    32.         '403' : 'Forbidden',  
    33.         '404' : 'Not Found',  
    34.         '405' : 'Method Not Allowed',  
    35.         '406' : 'Not Acceptable',  
    36.         '407' : 'Proxy Authentication Required',  
    37.         '408' : 'Request Timeout',  
    38.         '409' : 'Conflict',  
    39.         '410' : 'Gone',  
    40.         '411' : 'Length Required',  
    41.         '412' : 'Precondition Failed',  
    42.         '413' : 'Request Entity Too Large',  
    43.         '414' : 'Request-URI Too Long',  
    44.         '415' : 'Unsupported Media Type',  
    45.         '416' : 'Requested Range Not Satisfiable',  
    46.         '417' : 'Expectation Failed',  
    47.         //Server Error 5xx  
    48.         '500' : 'Internal Server Error',  
    49.         '501' : 'Not Implemented',  
    50.         '502' : 'Bad Gateway',  
    51.         '503' : 'Service Unavailable',  
    52.         '504' : 'Gateway Timeout',  
    53.         '505' : 'HTTP Version Not Supported'  
    54. };  
    55. JS.HTTPStatus.OK = 200;  
    56. JS.HTTPStatus.BADREQUEST = 400;  
    57. JS.HTTPStatus.FORBIDDEN = 403;  
    58. JS.HTTPStatus.NOTFOUND = 404;  
    59. JS.HTTPStatus.TIMEOUT = 408;  
    60. JS.HTTPStatus.SERVERERROR = 500;  
  • 相关阅读:
    Java String 类
    Java Number & Math 类
    String 方法
    创建格式化字符串
    定义存储过程如下:
    要创建一个EJB,必须要至少编写哪些Java类和接口?
    下面的那一个不属于MVC模式中的对象?
    下列哪个为JSP的隐含对象。
    以下声明正确的是。
    关于JSP生命周期的叙述,下列哪些为真?
  • 原文地址:https://www.cnblogs.com/linjiaxin/p/6706829.html
Copyright © 2020-2023  润新知