0

这是一个尝试访问 $.getJSON 的代码,但它没有响应。这可能是什么原因。

        function getTerms()
        {
            alert("hello"); //it alerts hello           
            $.getJSON('http://localhost/context-search.php?callback=?', function(r) {
                //not here
                alert("Hello");
            });
        }
        $(document).ready(function(){
        alert("hello");         
        getTerms(); 
    });

context-search.php 以如下形式返回 json 数据

{"options":["osi","tcp","ip","http 协议","ethernet","网络协议","协议含义\n"]}

我哪里可能出错了??请帮我解决这个问题!谢谢你!!:)

4

3 回答 3

0

你检查你的控制台日志了吗?如果它不包含错误,请改为执行这样的 json 请求

$.ajax({
    url: url,
    dataType: 'json',
    data: data,
    success: function(){},
    error: function(jqXHR, textStatus, errorThrown) {
        console.log("error " + textStatus);
        console.log("incoming Text " + jqXHR.responseText);
    }
});

这将为您提供适当的错误处理。

于 2012-05-11T06:38:18.600 回答
0

可能是同源政策。假设这是在 localhost 上运行的,您是否尝试过

$.getJSON('/context-search.php?callback=?', ...);

于 2012-05-11T06:41:42.590 回答
0

像这样使用

 $(document).ready(function(){
  $.getJSON('/ITTA/SavePreference/?t=' + new Date(), { id: id3 },
                   function (data) {
                       if (data != null && data != undefined && data != '') {
                           top.location.href = '/ITTA/Entries/' + id3;
                       }
                   }); });
于 2012-05-11T06:43:52.033 回答