提前中止 Go HTTP 用戶端 POST 要求
在 Go 中,http.Client 庫通常用於客戶端 HTTP 請求。執行長輪詢操作時,由於使用者操作或其他事件,可能需要提前中止請求。
搶佔或取消客戶端請求的標準方法是使用以下命令設定超時http.運輸。然而,這種機制只允許基於超時的取消,而不是用戶發起的操作。
更有彈性的解決方案是利用 http.Request.WithContext 函數。此函數允許請求與 context.Context 關聯。然後可以取消上下文或設定截止日期,允許隨時取消。
實現此方法:
範例:
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中文網其他相關文章!