如何在 BaseHTTPRequestHandler.do_POST() 中提取 HTTP 消息正文?
在 BaseHTTPRequestHandler
的 do_POST()
方法中,我只需通过属性 self.headers
即可访问 POST 请求的标头。但我找不到用于访问消息正文的类似属性。那么我该如何去做呢?
In the do_POST()
method of BaseHTTPRequestHandler
I can access the headers of the POST request simply via the property self.headers
. But I can't find a similar property for accessing the body of the message. How do I then go about doing that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
do_POST
方法中访问 POST 正文,如下所示:for python 2
for python 3
然后读取数据
You can access POST body in
do_POST
method like this:for python 2
for python 3
and then read the data