使用XMLHttpRequest()时如何在python中接收POST数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用XMLHttpRequest()时如何在python中接收POST数据相关的知识,希望对你有一定的参考价值。
关于使用XMLHttpRequest()时接收数据,我有两个问题。客户端是javascript。服务器端是python。
- 如何在python端接收/处理数据?
- 我如何回复HTTP请求?
客户端
var http = new XMLHttpRequest();
var url = "receive_data.cgi";
var params = JSON.stringify(inventory_json);
http.open("POST", url, true);
//Send the proper header information along with the request
http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
http.onreadystatechange = function() {
//Call a function when the state changes.
if(http.readyState == 4 && http.status == 200) {
alert(http.responseText);
}
}
http.send(params);
更新:我知道我应该使用cgi.FieldStorage(),但究竟是怎么回事?我的尝试以我的邮件请求收到服务器错误而告终。
答案
您不一定使用cgi.FieldStorage
来处理AJAX请求发送的POST数据。它与接收正常的POST请求相同,这意味着您需要获取请求的正文并处理该请求。
import SimpleHTTPServer
import json
class MyRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
def do_POST(self):
content_length = int(self.headers.getheader('content-length'))
body = self.rfile.read(content_length)
try:
result = json.loads(body, encoding='utf-8')
# process result as a normal python dictionary
...
self.wfile.write('Request has been processed.')
except Exception as exc:
self.wfile.write('Request has failed to process. Error: %s', exc.message)
以上是关于使用XMLHttpRequest()时如何在python中接收POST数据的主要内容,如果未能解决你的问题,请参考以下文章
ajax 介绍,ajax的请求通过js中的 xmlHttpRequest对象完成
使用formdata时如何在XMLHttpRequest中添加头数据?
当我的 xmlhttprequest 被 CORS 阻止时,我如何连接 api [重复]
使用定期 AJAX/XMLHttpRequest 调用时如何修复浏览器的内存增长?