英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论