英文:
Recreate http.Request persisted by Request.Write
问题
我有一个http.Request
,我使用Request.Write
将其写入文件。由于没有Request.Read
或类似的方法,我想知道如何使用该文件重新创建一个http.Request
。
英文:
I have a http.Request
which I wrote to a file using Request.Write
. Since there is no Request.Read
or similar, I was wondering how I can recreate a http.Request
using the file.
答案1
得分: 3
你可以使用http.ReadRequest
。
英文:
You can use http.ReadRequest
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论