首页  >  文章  >  后端开发  >  如何在完成之前中止 Go HTTP 客户端 POST 请求?

如何在完成之前中止 Go HTTP 客户端 POST 请求?

Patricia Arquette
Patricia Arquette原创
2024-11-27 07:50:09660浏览

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

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn