Go语言:HTTP响应头Transfer-Encoding: chunked和Content-Length的关系

如果没有显式的设定Content-Length请求头,则当响应Body的字节数小于2KB时,server会自动追加Content-Length;如果大于2KB,server不会再追加Content-Length,而是改为追加响应头Transfer-Encoding: chunked,Body会相应的采用chunk格式
Transfer-Encoding: chunked和Content-Length只会出现其中一个,不会同时出现,如果当Body大于2KB时,仍然想以非chunk方式返回,则需要在调用write之前显式的指定Content-Length,如下所示:

		w.Header().Set("Content-Length", strconv.Itoa(len(bytes_result)))
		w.Write(bytes_result)

附chunk格式:
chunk主要是用于服务端在响应体总长度未知的情况下提前向客户端返回部分数据

HTTP/1.1 200 OK
Access-Control-Allow-Origin: *
Cache-Control: no-cache, no-store
Content-Type: text/json
P3P: CP=“NOI DEV PSA PSD IVA PVD OTP OUR OTR IND OTC”
Pragma: no-cache
Date: Wed, 05 Jan 2022 02:08:50 GMT
Connection: close
Transfer-Encoding: chunked

69d6 下面这一个chunk的字节数(十六进制)
{
“material_list”: [
{
“id”: 69097,
“url”: “http://ppm.example.com/mat/20210914163946”,
“time”: 15,
“length”: 4450944,
“checksum”: “004e3e8d54dba10ac2a96f55385d2c12”,
“width”: 1920,

0 最后一个chunk的字节数必须是0,用来表示结束

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值