将数据发送到python cgi脚本,以便使用纯javascript从浏览器进行处理

时间:2015-11-25 02:56:48

标签: javascript python xmlhttprequest

我有一个带有以下

的html测试文件
<!doctype html>
<html lang="en">
    <meta charset="utf-8">
    <body>
        <script type="text/javascript">
        var httprequest=new XMLHttpRequest();
        httprequest.open("POST","hello.cgi",true);
        httprequest.onload=function(){
        if(httprequest.status==200){
            alert("");
         }// end of if
         }//end of onload
         var content={"hello":"world"};
         httprequest.send(JSON.stringify(content));
         alert(httprequest.responseText)
          </script
    </body>
</html>
</doctype>

在这种情况下,我正在尝试发送数据{“hello”:“world”};到python cgi脚本

这是我的python脚本,适用于从<form> html标记提交的数据

#!/usr/bin/python
try:
    import sys
    import cgi
    import traceback
    print("Content-type: text/html\n\n")
    print "<h1>YES</h1>"
    formData = cgi.FieldStorage()
    print(formData)
    print(s)
except Exception as e:
    print(e.message)
    print(traceback.print_exc())

当我发送数据{"hello":"world"}时,我的浏览器警告框显示没有从cgi脚本返回的数据。

正如cgi脚本中所反映的,我正在尝试打印“YES”并打印从javascript发送的数据。

我发现了几个与使用$.ajax执行此操作相关的问题,但没有遇到使用XMLHttpRequest()的方法

问题

如何使用纯javascript(无jquery)将数据发送到python cgi脚本以便从我的浏览器进行处理

1 个答案:

答案 0 :(得分:1)

您正在执行的HTTP请求是在其自己的时间发生的。对httprequest.send() 的调用启动操作,但该函数调用几乎立即返回,并且肯定在远程服务器响应之前。此异步行为是JavaScript环境中的基本事实。

“onload”回调的全部原因是为了使您可以编写在HTTP请求实际完成时发生的代码。当结果可用时,浏览器将使用结果调用该函数。那可能是100毫秒,或10秒;这一切都取决于服务器和网络。