首頁 > 後端開發 > Golang > 如何從 Go 伺服器傳送分塊 HTTP 回應?

如何從 Go 伺服器傳送分塊 HTTP 回應?

Barbara Streisand
發布: 2024-12-01 19:50:11
原創
609 人瀏覽過

How to Send Chunked HTTP Responses from a Go Server?

從Go 伺服器傳送分塊的HTTP 回應

解決方案:

解決方案:
package main

import (
    "fmt"
    "io"
    "log"
    "net/http"
    "time"
)

func main() {
    http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
        flusher, ok := w.(http.Flusher)
        if !ok {
            panic("expected http.ResponseWriter to be an http.Flusher")
        }
        w.Header().Set("X-Content-Type-Options", "nosniff")
        for i := 1; i <= 10; i++ {
            fmt.Fprintf(w, "Chunk #%d\n", i)
            flusher.Flush() // Trigger "chunked" encoding and send a chunk...
            time.Sleep(500 * time.Millisecond)
        }
    })

    log.Print("Listening on localhost:8080")
    log.Fatal(http.ListenAndServe(":8080", nil))
}
登入後複製

解決方案:

$ telnet localhost 8080
Trying ::1...
Connected to localhost.
Escape character is '^]'.
GET / HTTP/1.1

HTTP/1.1 200 OK
Date: Tue, 02 Jun 2015 18:16:38 GMT
Content-Type: text/plain; charset=utf-8
Transfer-Encoding: chunked

9
Chunk #1

9
Chunk #2

...
登入後複製
驗證:

使用 telnet,您可以連接到伺服器並見證分塊回應的傳遞:

  • 額外註:
http.ResponseWriters 是否支援多個 goroutine 同時使用的並發訪問,值得研究一下。 有關「X-Content-Type-Options」的更多資訊" 標題,請諮詢此相關問題。

以上是如何從 Go 伺服器傳送分塊 HTTP 回應?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板