如何读取用 http.ResponseWriter 写入的数据 [重复]
Posted
技术标签:
【中文标题】如何读取用 http.ResponseWriter 写入的数据 [重复]【英文标题】:How to read data written in http.ResponseWriter [duplicate] 【发布时间】:2021-10-12 14:39:51 【问题描述】:我正在寻找更新在 http.ResponseWriter 中写入的数据。
在 golang 中有什么方法,我们获取写入的 []byte 的指针/句柄并在服务请求之前对其进行更新?
【问题讨论】:
不能保证所有写入的数据都在缓冲区中。在调用链的更高层实现您自己的响应编写器,以便您可以拦截写入调用。 【参考方案1】:在 golang 中有什么方法,我们获取写入的 []byte 的指针/句柄并在服务请求之前对其进行更新?
没有。
【讨论】:
以上是关于如何读取用 http.ResponseWriter 写入的数据 [重复]的主要内容,如果未能解决你的问题,请参考以下文章
如何转储HTTP GET请求的响应并将其写入http.ResponseWriter
golang如何构造http.ResponseWriter和http.Request
如何为所有 API 端点全局设置 http.ResponseWriter Content-Type 标头?