WSGI:使用AJAX从python脚本中获取字符串

时间:2011-03-01 04:01:44

标签: python ajax cgi wsgi

我正在钻研WSGI&这很难。

我想要做的事情非常简单:当我点击链接时,我想从python脚本获取字符串“hello”&在我的HTML段落元素中显示“hello”。

现在我已经制作了显示HTML文本的WSGI python脚本,即使用WSGI python提供页面,但没有使用Python,AJAX& WSGI一起出于上述目的。

现在发生的事情是当我点击HTML页面中的链接时,段落元素显示“错误”而不是“你好”。你认为我哪里出错了;在python或javascript中?

我的python脚本是否正确?:

#!/usr/bin/env python

from wsgiref.simple_server import make_server
from cgi import parse_qs, escape

def application(environ, start_response):

   return [ "hello" ]

if __name__ == '__main__':
    from wsgiref.simple_server import make_server
    srv = make_server('localhost', 8000, application)
    srv.serve_forever()

也许是我的Javascript& /或HTML我错了?:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <script type="text/javascript">
    <!--
        function onTest( dest, params )
        {
            var xmlhttp;

            if (window.XMLHttpRequest)
            {// code for IE7+, Firefox, Chrome, Opera, Safari
                xmlhttp=new XMLHttpRequest();
            }
            else
            {// code for IE6, IE5
                xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
            }

            xmlhttp.onreadystatechange=function()
            {
                if (xmlhttp.readyState==4 && xmlhttp.status==200)
                {
                    document.getElementById( "bb" ).innerHTML = xmlhttp.responseText;
                }
            }

            xmlhttp.open("POST",dest,true);
            xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
            xmlhttp.send( params ); 
        }


    -->
    </script>
</head>

<body>

    <p id="bb"> abcdef </p>
    <a href="javascript:onTest('aaa.py', '')">Click it</a>

</body>

</html>

我采取的步骤来测试它:
- 运行wsgi假服务器脚本
- 打开浏览器&amp;输入http://localhost:8000/test.html
- 点击html页面中的链接&amp;得到“错误”回来

我的文件wsgi.py,aaa.py&amp; test.html都在同一个文件夹中。

我的服务器:     导入线程     导入webbrowser     进口口     来自wsgiref.simple_server import make_server

FILE = 'index.html'
PORT = 8000

def test_app(environ, start_response):

    if environ['REQUEST_METHOD'] == 'POST':

        try:
            request_body_size = int(environ['CONTENT_LENGTH'])
            request_body = environ['wsgi.input'].read(request_body_size)
        except (TypeError, ValueError):
            request_body = "0"

        try:
            response_body = str(int(request_body) ** 2)
        except:
            response_body = "error"

        status = '200 OK'
        headers = [('Content-type', 'text/plain')]
        start_response(status, headers)
        return [response_body]

    else:
        f = environ['PATH_INFO'].split( "?" )[0]
        f = f[1:len(f)]
        response_body = open(f).read()
        status = '200 OK'
        headers = [('Content-type', 'text/html'), ('Content-Length', str(len(response_body)))]
        start_response(status, headers)
        return [response_body]

def open_browser():
    """Start a browser after waiting for half a second."""

    def _open_browser():
        webbrowser.open('http://localhost:%s/%s' % (PORT, FILE))
        thread = threading.Timer(0.5, _open_browser)
        thread.start()

def start_server():
    """Start the server."""
    httpd = make_server("", PORT, test_app)
    httpd.serve_forever()


if __name__ == "__main__":
    open_browser()
    print "Now serving on Port 8000"
    start_server()

4 个答案:

答案 0 :(得分:0)

您没有致电start_response。使用如下调用:

start_response("200 OK", [('Content-type','text/plain')])

答案 1 :(得分:0)

错误似乎来自python脚本。检查aaa.py是否可以直接访问您的IE或其他浏览器。

答案 2 :(得分:0)

  

httpd.serve_forever()

必须在功能块之外

答案 3 :(得分:0)

您不能在此处使用“aaa.py”作为帖子网址。然后服务器将查看此文件的根目录。例如本地主机/ aaa.py。您必须从服务器根目录(没有服务器根路径)提供完整路径

e.g。如果文件位于/var/www/wsgi-scripts/aaaa.py 那么网址应该是/wsgi-scripts/aaaa.py。