提前中止 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中文网其他相关文章!