博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HttpStatus各种状态
阅读量:5234 次
发布时间:2019-06-14

本文共 1590 字,大约阅读时间需要 5 分钟。

  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;  

转载于:https://www.cnblogs.com/linjiaxin/p/6706829.html

你可能感兴趣的文章
内存优化文章链接
查看>>
ext4.0 代理 的使用
查看>>
数据检查约束类型和语法
查看>>
AngularJS实战之路由ui-view
查看>>
使用jQuery+huandlebars防止编码注入攻击
查看>>
C#的托管与非托管大难点
查看>>
[转]HTTPS简谈
查看>>
(图片)jsp上传图片,进行缩放处理
查看>>
集合类List,set,Map 的遍历方法,用法和区别
查看>>
HDU-2577-How to Type
查看>>
java日志框架之logback——布局详细说明书地址
查看>>
Java Selenium (十二) 操作弹出窗口 & 智能等待页面加载完成 & 处理 Iframe 中的元素...
查看>>
Scala入门系列(十):函数式编程之集合操作
查看>>
pulseaudio的交叉编译
查看>>
(Problem 7)10001st prime
查看>>
Cracking The Coding Interview 1.1
查看>>
mysql安装linux_二进制包安装
查看>>
POJ 3280 Cheapest Palindrome
查看>>
vb.net 浏览文件夹读取指定文件夹下的csv文件 并验证,显示错误信息
查看>>
thinkpad T420屏幕对比度设置
查看>>