如何读取 http.ResponseWriter 中写入的数据?

huangapple go评论88阅读模式
英文:

How to read data written in http.ResponseWriter

问题

我正在寻找更新写入http.ResponseWriter的数据的方法。

在golang中,是否有一种方法可以获取指向已写入的[]byte的指针/句柄,并在提供请求之前对其进行更新?

英文:

I am looking for update the data written in http.ResponseWriter.

Is there any way in golang, we get pointer/handle to the written []byte and update it before serving the request?

答案1

得分: 1

在golang中,我们可以通过指针/句柄获取已写入的[]byte并在提供请求之前更新它吗?

不可以。

英文:

> Is there any way in golang, we get pointer/handle to the written []byte and update it before serving the request?

No.

huangapple
  • 本文由 发表于 2021年8月9日 01:05:48
  • 转载请务必保留本文链接:https://go.coder-hub.com/68702977.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定