使用 XMLHttpRequest() 时如何在 python 中接收 POST 数据
Posted
技术标签:
【中文标题】使用 XMLHttpRequest() 时如何在 python 中接收 POST 数据【英文标题】:How to receive POST data in python when using XMLHttpRequest() 【发布时间】:2015-04-05 23:57:49 【问题描述】:我有两个关于使用 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() 但究竟如何?我的尝试以我收到发布请求的服务器错误而告终。
【问题讨论】:
【参考方案1】:您不一定要使用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 数据的主要内容,如果未能解决你的问题,请参考以下文章
使用formdata时如何在XMLHttpRequest中添加头数据?
当我的 xmlhttprequest 被 CORS 阻止时,我如何连接 api [重复]
使用定期 AJAX/XMLHttpRequest 调用时如何修复浏览器的内存增长?
如何使用 GET 方法通过 XMLHttpRequest 传递 FormData
在 Transcrypt 中使用 XMLHttpRequest()
如何使用 XMLHttpRequest 和 FormData 对象在 multipart/form-data 上设置我自己的边界