英文:
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")
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论