0

我正在实现一个系统,网页(HTML + Javascript)通过 CGI Python 服务器端脚本进行通信。此页面之一发出请求:

function doQuery(tweets) {

    $.getJSON("http://linuxproj.ecs.soton.ac.uk/~onme1g10/watchitlater/cgi-bin/engine.cgi?loading="+ uid +"&tweets="+ tweets, function(data) {

    }
    )
    .success(function(data) {
      //alert("complete: " + data['test']);
      if (tweets == 1) {
        //console.log('tweets is one')
        tweetsData = data;
        length = Object.keys(tweetsData["tweets"]).length;
        intervalVar = window.setInterval(showTweets, 1000);
        intervalVar2 = window.setInterval(queryState, 1500);
        //console.log("set intervals");
      }
      else {
        console.log('HERE: ' + data["correct"])
        queryData = data;
        // Function to update state variables
      }
    })
    .error(function(xhr, textStatus, error) {
      //alert("error:" + textStatus);
      console.log(xhr);
      console.log(textStatus);
      console.log(error);
    })
    .complete(function() {/*alert("complete!");*/ });

  }

此请求具有?tweets=1?tweets=0,其想法是服务器必须根据该值返回不同的 JSON 对象。在服务器上我有:

if fs.has_key('state'):
    createStateFile()
elif fs.has_key('loading'):
    # Return JSON objects
    print "Content-type: application/json"
    print
    option = fs['tweets'].value
    if option == 0:
        response = {'correct':'1'}
        print(json.JSONEncoder().encode(response))
    else:
        response = harvestTweets()
        print(json.JSONEncoder().encode(response))

else:
    # Return main page
    print "Content-type: text/html"
    print
    main()

这不起作用。else 子句(其中 option == 1)执行得很好,但另一个选项返回一个未指定的对象。我尝试了多种方式(两个不同的 AJAX 请求等),但它不起作用。它不喜欢多次请求或多次返回。有任何想法吗?

4

1 回答 1

0

问题确实很简单。在 Python CGI 脚本中,当我这样做时,if tweets == 1: ... else: ...它总是转到 else 子句,因为我正在比较一个“tweets”,它是一个来自 FieldStorage 的字符串和数字 1。它永远不会评估为真,因此它总是返回相同的回答。

于 2013-03-15T18:40:37.997 回答