首頁 > 後端開發 > Golang > 如何在完成之前中止 Go HTTP 用戶端 POST 請求?

如何在完成之前中止 Go HTTP 用戶端 POST 請求?

Patricia Arquette
發布: 2024-11-27 07:50:09
原創
714 人瀏覽過

How to Abort a Go HTTP Client POST Request Before Completion?

提前中止 Go HTTP 用戶端 POST 要求

在 Go 中,http.Client 庫通常用於客戶端 HTTP 請求。執行長輪詢操作時,由於使用者操作或其他事件,可能需要提前中止請求。

搶佔或取消客戶端請求的標準方法是使用以下命令設定超時http.運輸。然而,這種機制只允許基於超時的取消,而不是用戶發起的操作。

更有彈性的解決方案是利用 http.Request.WithContext 函數。此函數允許請求與 context.Context 關聯。然後可以取消上下文或設定截止日期,允許隨時取消。

實現此方法:

  1. 照常建立 http.Request。
  2. 使用 req.WithContext(ctx) 將請求與上下文關聯起來。可以使用 context.WithDeadline 或 context.WithCancel 建立上下文。
  3. 使用修改後的請求物件 (req) 透過 client.Do 方法發出請求。

範例:

import (
    "context"
    "net/http"
)

// Create a context with a user-specified timeout or cancellation.
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
defer cancel() // Remember to cancel the context when done.

// Create an HTTP request.
req, err := http.NewRequest("POST", "http://example.com", nil)
if err != nil {
    // Handle error.
}

// Add headers or other request-specific information.

// Associate the request with the context.
req = req.WithContext(ctx)

// Perform the request.
resp, err := client.Do(req)
if err != nil {
    // Handle error.
}
// ... // Handle the response as usual.
登入後複製

使用這種方法,如果上下文被取消或截止日期,請求將自動中止過期了。

以上是如何在完成之前中止 Go HTTP 用戶端 POST 請求?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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