这是一个尝试访问$ .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 protcol”,“ethernet”,“网络协议”,“协议含义\ n”]}
我可能在哪里出错?请帮我解决这个问题! 谢谢!! :)
答案 0 :(得分: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);
}
});
这将为您提供正确的错误处理。
答案 1 :(得分:0)
可能是same origin policy。假设这是在localhost上运行的,你试过吗
$。getJSON('/ context-search.php?callback =?',...);
答案 2 :(得分: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;
}
}); });