我使用以下javascript动态加载父页面中的外部页面的内容。外部页面与父页面位于同一域中,并在数据库中查询博客条目。我使用变量“eeOffset”将值传递到外部页面中的数据库查询以抵消返回的结果,即如果eeOffset为“5”,则查询返回第6个数据库中的下一个数据库记录。 “eeLimit”变量设置每个请求返回的项目总数。我遇到的问题是父页面中显示的条目是重复的 - 就像在触发新项目请求之前模板页面的URL没有被更新一样。有没有人有任何建议如何解决这个问题?
var eeLoading; // Declare variable "eeLoading"
var eeTemplate = "http://www.mydomain.com/new_items/query"; // URL to template page
var eeOffset; // Declare variable "eeOffset"
var eeLimit = "5"
//Execute the following functions when page loads
$(function (){
scrollAlert();
$("#footer").append("<div id='status'></div>"); //Add some html to contain the status and loading indicators
updateStatus(); // Update the total number of items displayed
});
//Update Status
function updateStatus(){
var totalItems = $("ul.column li").length;
eeOffset = totalItems;
eeURL = eeTemplate+"/"+eeOffset+"/"+eeOrderby+"/"+eeSort+"/"+eeLimit+"/"; // Build the template page url
}
//Scoll Alert
function scrollAlert(){
var scrollTop = $("#main").attr("scrollTop");
var scrollHeight = $("#main").attr("scrollHeight");
var windowHeight = $("#main").attr("clientHeight");
if (scrollTop >= (scrollHeight-(windowHeight+scrollOffset)) && eeLoading !== "false"){
$("#status").addClass("loading");
$.get(eeURL, function(newitems){ //Fetch new items from the specified url
if (newitems != ""){ //If newitems exist...
$("ul.column").append(newitems); //...add them to the parent page
updateStatus(); //Update the status
}
else {
eeLoading = "false"; //If there are no new items...
$("#status").removeClass("loading"); //Remove the loading throbber
$("#status").addClass("finished"); //Add some text
}
});
}
if (eeLoading !== "false") { //If there are still new items...
setTimeout("scrollAlert();", 1500); //..check the scollheight every 1500ms
}
}
答案 0 :(得分:0)
您的代码中似乎存在争用条件。如果新项目的请求需要超过1.5秒才能完成,您将在调用updateStatus()之前触发下一个请求。我认为最简单的解决方法是移动此代码:
if (eeLoading !== "false") { //If there are still new items...
setTimeout("scrollAlert();", 1500); //..check the scollheight every 1500ms
}
在if语句中,在updateStatus()调用之后更新要查询的URL:
if (newitems != ""){ //If newitems exist...
$("ul.column").append(newitems); //...add them to the parent page
updateStatus(); //Update the status
// Move setTimeout here
这样,当您请求新网址时,状态将始终更新。