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. JS.HTTPStatus = {
  7. //Informational 1xx
  8. '100' : 'Continue',
  9. '101' : 'Switching Protocols',
  10. //Successful 2xx
  11. '200' : 'OK',
  12. '201' : 'Created',
  13. '202' : 'Accepted',
  14. '203' : 'Non-Authoritative Information',
  15. '204' : 'No Content',
  16. '205' : 'Reset Content',
  17. '206' : 'Partial Content',
  18. //Redirection 3xx
  19. '300' : 'Multiple Choices',
  20. '301' : 'Moved Permanently',
  21. '302' : 'Found',
  22. '303' : 'See Other',
  23. '304' : 'Not Modified',
  24. '305' : 'Use Proxy',
  25. '306' : 'Unused',
  26. '307' : 'Temporary Redirect',
  27. //Client Error 4xx
  28. '400' : 'Bad Request',
  29. '401' : 'Unauthorized',
  30. '402' : 'Payment Required',
  31. '403' : 'Forbidden',
  32. '404' : 'Not Found',
  33. '405' : 'Method Not Allowed',
  34. '406' : 'Not Acceptable',
  35. '407' : 'Proxy Authentication Required',
  36. '408' : 'Request Timeout',
  37. '409' : 'Conflict',
  38. '410' : 'Gone',
  39. '411' : 'Length Required',
  40. '412' : 'Precondition Failed',
  41. '413' : 'Request Entity Too Large',
  42. '414' : 'Request-URI Too Long',
  43. '415' : 'Unsupported Media Type',
  44. '416' : 'Requested Range Not Satisfiable',
  45. '417' : 'Expectation Failed',
  46. //Server Error 5xx
  47. '500' : 'Internal Server Error',
  48. '501' : 'Not Implemented',
  49. '502' : 'Bad Gateway',
  50. '503' : 'Service Unavailable',
  51. '504' : 'Gateway Timeout',
  52. '505' : 'HTTP Version Not Supported'
  53. };
  54. JS.HTTPStatus.OK = 200;
  55. JS.HTTPStatus.BADREQUEST = 400;
  56. JS.HTTPStatus.FORBIDDEN = 403;
  57. JS.HTTPStatus.NOTFOUND = 404;
  58. JS.HTTPStatus.TIMEOUT = 408;
  59. JS.HTTPStatus.SERVERERROR = 500;
上一篇:python数据类型之dict


下一篇:Android原生同步登录状态到H5网页避免二次登录