dongzhang6544 2014-06-23 10:05
浏览 318
已采纳

如何避免发送Content-Length标头

For a streaming http endpoint is there a way to refrain from sending the length?

  w.Header().Set("Content-Type", "image/jpeg")
  w.Header().Set("Transfer-Encoding", "chunked")
  w.Header().Del("Content-Length")

This is what I get back.

HTTP/1.1 200 OK
Content-Length: 0
Content-Type: image/jpeg
Date: Mon, 23 Jun 2014 10:00:59 GMT
Transfer-Encoding: chunked
Transfer-Encoding: chunked

The server prints a warning as well.

2014/06/23 06:04:03 http: WriteHeader called with both Transfer-Encoding of "chunked" and a Content-Length of 0
  • 写回答

1条回答 默认 最新

  • douchao0358 2014-06-23 10:56
    关注

    You should not manually set the Transfer-Encoding. Go is going to do that for you, as well as the Content-Length.

    curl, the Go http client or any standard http client will automatically read correctly chunked or non-chunked http response.

    Small exmaple of chunked server: http://play.golang.org/p/miEV7URi8P

    package main
    
    import (
            "io"
            "log"
            "net/http"
    )
    
    // hello world, the web server
    func HelloServer(w http.ResponseWriter, req *http.Request) {
            w.WriteHeader(200)
            for i := 0; i < 5; i++ {
                    io.WriteString(w, "hello, world!
    ")
                    w.(http.Flusher).Flush()
            }
    }
    
    func main() {
            http.HandleFunc("/", HelloServer)
            err := http.ListenAndServe(":8080", nil)
            if err != nil {
                    log.Fatal("ListenAndServe: ", err)
            }
    }
    

    In a case of an image/jpeg, you can either delegate the chunked decision to Go or manually send N bytes from the image then flush.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 随机森林与房贷信用风险模型
  • ¥50 buildozer打包kivy app失败
  • ¥30 在vs2022里运行python代码
  • ¥15 不同尺寸货物如何寻找合适的包装箱型谱
  • ¥15 求解 yolo算法问题
  • ¥15 虚拟机打包apk出现错误
  • ¥15 用visual studi code完成html页面
  • ¥15 聚类分析或者python进行数据分析
  • ¥15 三菱伺服电机按启动按钮有使能但不动作
  • ¥15 js,页面2返回页面1时定位进入的设备