在这里,我试图从 REST API 数据中请求数据并使用 JQuery 呈现在网页中。
我正在发出 3 个不同的请求,响应时间大约为 200 毫秒、300 毫秒、7000 毫秒。这里从 3 个调用方法中调用了两个调用方法,我不明白为什么没有调用第 3 个。使用 Firebug 工具进行调试时,响应来自服务器。
当以下函数的顺序发生变化时,行为也会发生变化。正在调用一个或两个回调方法中的任何一个。
请帮我解决这个问题。
$.getJSON(
"http://115.111.168.221:8080/AnalysisWebService/getDataFromSocialMedia?searchString=wellpoint&startDate=2012-08-01&endDate=2012-08-04&method=getAnalysisRange",
function(json) {
}
$(function () {
$.getJSON(
"http://115.111.168.221:8080/AnalysisWebService/getDataFromSocialMedia?searchString=wellpoint&source=facebook,twitter&searchFrom=socialmention&method=getTodayAnalysis",
function(json) {
}
}
);
);
$(function () {
$.getJSON(
"http://115.111.168.221:8080/AnalysisWebService/getDataFromSocialMedia?searchString=wellpoint&source=facebook,twitter&searchFrom=socialmention&method=getCurrentAnalysis",
function(json) {
}
}
);
);