0

我想做这个:

使用 out of javascipt 运行 python scipt:

    function getDescription() {
        <!-- var snd_name = document.getElementById("name").value;  -->
        var url = '/cgi-bin/events.py?name=1';

        if (window.XMLHttpRequest) {
            req = new XMLHttpRequest();
        } else if (window.ActiveXObject) {
            req = new ActiveXObject("Microsoft.XMLHTTP");
        }
        printEvent('Client','Sent request ...');
        req.onreadystatechange = processRequest;
        req.open("GET", url, true);
        req.send(null);
    }

函数 getDescription 在其他地方被调用。

现在我通过 req.open 将包含参数的 URL 传递给 python 脚本。

在 python 脚本中,我喜欢这样的事情:

import time
import cgi
import sys
import cgitb; cgitb.enable()
import urlparse
import urllib

result = READ_THE_PARAMETERS... I have no clue what to do here...

a = result[name]

print[a]

而在一个我应该是“1”。

这可能很容易,但对我来说不是今天。请帮忙。

谢谢彼得

4

1 回答 1

0
parameters = cgi.FieldStorage()
a = parameters[name]
print a
于 2013-03-30T19:10:36.533 回答