博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Expect: 100-continue
阅读量:6095 次
发布时间:2019-06-20

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

‍Expect:100-Continue

(转自)

在中的描述是:

The purpose of the 100 (Continue) status (see section ) is to   allow a client that is sending a request message with a request body   to determine if the origin server is willing to accept the request   (based on the request headers) before the client sends the request   body. In some cases, it might either be inappropriate or highly   inefficient for the client to send the body if the server will reject   the message without looking at the body.

   Requirements for HTTP/1.1 clients:

- If a client will wait for a 100 (Continue) response before        sending the request body, it MUST send an Expect request-header        field (section ) with the "100-continue" expectation.
- A client MUST NOT send an Expect request-header field (section        ) with the "100-continue" expectation if it does not intend        to send a request body. 就是说 ‍Expect:100-Continue的作用是,设定Client 和 Server在Post数据前需要进行 ‍“请求头域” 的数据匹配,相当于是握手。如果匹配则开始进行body 的内容,Post数据。否则,报错(417) Unkown。

转载于:https://www.cnblogs.com/jenneyblog/archive/2013/03/07/Expect100continue.html

你可能感兴趣的文章
iOS状态栏颜色
查看>>
【资源共享】《Rockchip_android7.1_wifi_配置说明V1.4》
查看>>
vue路由-基本使用、重定向、嵌套路由、跳转go、动画、传参、watch、computed
查看>>
UrlHelper
查看>>
MHA故障切换和在线手工切换原理
查看>>
[openStack]使用Fuel安装OpenStack juno的fuel_master
查看>>
QT的安装以及测试是否成功
查看>>
C++中显式、隐式与explicit关键字
查看>>
GOF设计模式汇总
查看>>
input 输入框限制
查看>>
sqlmap命令详解
查看>>
XP远程桌面连接强制登录
查看>>
步步为营 .NET 设计模式学习笔记 八、State(状态模式)
查看>>
ffmpeg的安装
查看>>
Flask基础三
查看>>
C++ 动态内存与智能指针
查看>>
vim进阶:better,faster and stronger
查看>>
jQuery.fn.extend jQuery.extend插件机制 tab切换
查看>>
算法问题——递归算法
查看>>
Vue.js递归组件实现动态树形菜单
查看>>