1

作成したスクリプトをテストしました。Pythonです。私はajaxを使用してリクエストを送信し、結果を取得しようとします。

function ajaxFunction(){
    var ajaxRequest;
    var e = document.getElementById("ktype");
    var ktype = e.options[e.selectedIndex].value;
    var acookie = document.getElementById("acookie").value;
alert (ktype +"\n" + acookie);
    try{
        ajaxRequest = new XMLHttpRequest();
    } catch (e){
        try{
            ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
        } catch (e) {
            try{
                ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e){
                return false;
            }
        }
    }
    ajaxRequest.onreadystatechange = function(){
        if (ajaxRequest.readyState < 4){
            document.getElementById("resp").innerHTML = "<center><img src='loading.gif' style='max-width:60px; max-height:60px;'></center>";
        }
        if(ajaxRequest.readyState == 4){
            document.getElementById("resp").innerHTML = ajaxRequest.responseText;
        }
    }
ajaxRequest.open("POST", "kindle.py", true);
ajaxRequest.setRequestHeader("Content-type","application/x-www-form-urlencoded");
ajaxRequest.send("amzcookie=" + acookie + "&ktype=" + ktype);
}

PythonスクリプトはCGIを使用します。djangoのようなWebフレームワークはありません。

このリクエストを実行すると、Pythonファイルの内容が出力されます。コードは実行されません。

4

1 に答える 1

3

あなたはそのために使うべきです...あなた自身の要求JQueryを書く代わりに、それは一行で書くことができます:Ajax

$.post('link-to-my-python-script',{data},
          function(answer){
                      // process your request here ..
                  });

あなたはここでそれについてもっと読むことができます:JqueryPost

于 2012-07-28T19:03:50.850 に答える