在jQuery中关闭异步请求解决了这个问题。
我有以下Javascript&我的页面中的AJAX请求(使用jQuery):
"use strict";
var hsArea, counter, hotspots, count;
counter = 4;
count = 0;
hotspots = {};
function fetchHotspotList() {
$.getJSON ('/alpha/engine/hotspots/gethotspot.php', {'type' : 'list'}, function(json) {
hotspots = json;
});
}
function displayHotspot(type, id, number) {
$.ajax({
url: '/alpha/engine/hotspots/gethotspot.php',
dataType: 'json',
data: {'type' : type, 'id' : id},
success: function(json) {
console.log(json);
var hotspot, extract;
extract = json.content;
extract = extract.replace(/<(?:.|\n)*?>/gm, '');
extract = extract.substring(0, 97);
extract = extract + "...";
json.content = extract;
hotspot = document.createElement("div");
hsArea.append(hotspot);
hotspot.setAttribute('class','hotspot');
hotspot.setAttribute('id','hotspot' + number);
$(hotspot).css('position', 'absolute');
$(hotspot).css('top', number * 100 + 100);
$(hotspot).css('left', number * 100 + 110);
hotspot.innerHTML = "<h1>"+ json.title + "</h1><p>" + json.content + "</p>";
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus, errorThrown);
}
});
}
function listHotspots() {
for(count = 0; count < counter; count++) {
(function(count) {
displayHotspot('scribble',hotspots[count], count);
count = count + 1;
})(count);
}
}
function loadHotspots() {
fetchHotspotList();
listHotspots();
}
$(document).ready(function() {
hsArea = $("#hotspotArea");
fetchHotspotList();
listHotspots();
});
(抱歉格式有点偏!) - 现在,$(document).ready()函数按原样分配hsArea变量,但fetchHotspotList()和listHotspots()的组合返回:
Uncaught TypeError: Cannot call method 'replace' of null
但是,如果在Google Chrome Javascript控制台中,我运行:
loadHotspots();
它从AJAX请求中获取数据并在页面上正确显示。起初我认为问题是我没有使用$(document).ready()处理程序,但是添加它并没有修复它。也没有在body标签内部使用onload处理程序。
非常感谢任何帮助。
此致 本。
答案 0 :(得分:1)
这可能是因为在listHotSpots
返回之前调用了fetchHotSpots
函数(因为它是异步调用)。
最好将listHotSpots
的执行链接到fetchHotSpots
的完成情况,如下所示:
function fetchHotspotList() {
$.getJSON ('/alpha/engine/hotspots/gethotspot.php', {'type' : 'list'}, function(json) {
hotspots = json;
listHotSpots();
});
}
最好修改listHotSpots
以获取从AJAX调用返回的json数据。希望这有帮助!