在長輪詢的情況下,客戶端-伺服器連線長時間保持活動狀態,可能會有必要提前終止客戶端的請求。雖然 http.Client 函式庫為長輪詢提供了預設的阻塞行為,但出現了問題:如何在完全收到回應之前取消或中止 POST 請求?
呼叫 resp.Body 的傳統方法不鼓勵使用 .Close() 過早關閉回應,因為它需要透過另一個 goroutine 進行額外的編排。此外,使用 http.Transport 的逾時功能可能不符合使用者啟動的取消的需求。
幸運的是,Go 生態系統已經發展到透過 http.Request.WithContext 提供更簡化的解決方案。這允許客戶端為請求指定有時限的上下文,從而能夠優雅地終止以回應外部事件。下面的程式碼片段示範了這個方法:
// Create a new request with an appropriate context, using a deadline to terminate after a specific duration. req, err := http.NewRequest("POST", "http://example.com", nil) ctx, cancel := context.WithDeadline(context.Background(), time.Now().Add(5*time.Second)) req = req.WithContext(ctx) err = client.Do(req) if err != nil { // Handle the error, which may indicate a premature termination due to the context deadline. }
透過在上下文物件上呼叫cancel(),可以隨時中止請求,從而觸發長輪詢的終止。這為用戶控制的 HTTP POST 請求取消提供了可靠且高效的機制。
以上是如何在 Go 中中止長輪詢 POST 請求?的詳細內容。更多資訊請關注PHP中文網其他相關文章!