Disable chunked transfer encoding in go without using content-length

huangapple go评论82阅读模式
英文:

Disable chunked transfer encoding in go without using content-length

问题

有没有一种方法可以在Go中禁用分块传输编码而不使用content-length?

这是用于无法使用content-length的服务器发送事件(Server-Sent Events)的情况。

英文:

Is there a way to disable chunked transfer encoding in go without using a content-length?

It's for Server-Sent Events which can't have either.

答案1

得分: 4

将传输编码头设置为identity:

w.Header().Set("Transfer-Encoding", "identity")
英文:

Set the transfer encoding header to identity:

w.Header().Set("Transfer-Encoding", "identity")

huangapple
  • 本文由 发表于 2016年1月15日 00:26:08
  • 转载请务必保留本文链接:https://go.coder-hub.com/34794647.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定