我已经在php中完成了分页。但在某些记录之后,它会显示某些行的重复条目。
我的查询是第一次加载页面时
select * from sakhe WHERE status = 1 ORDER BY sakhe_id ASC limit 0,30
我在第二次滚动时的查询(它在一次滚动时执行了两次)
select * from sakhe WHERE status = 1 ORDER BY sakhe_id ASC limit 30,30
在此查询之后,我在控制台中找到了正确的数据。但它在现场显示重复。
我的 Js 代码是这样的
var page = 1;
var total_page = "";
function getresult(searches) {
$.ajax({
url: "process/Sakhe_list.php",
type: "post",
data: {
Sakhe_name: $("#Sakhe_name").val(),
page: page
},
success: function (data) {
if (searches == true) {
$("#rows").html(data);
} else {
$("#rows").append(data);
}
}
});
}
$(document).ready(function () {
getresult(false);
$(window).scroll(function () {
if ($(window).scrollTop() >= $(document).height() - $(window).height() - 5) {
if ($(".current_page:last").val() <= $("#total_page").val()) {
page = parseInt($(".current_page:last").val()) + 1;
getresult(false);
}
}
});
$("#shopsubmit").click(function () {
page = 1;
getresult(true);
});
$("#reset").click(function () {
$("#Sakhe_name").val("");
page = 1;
getresult(true);
});
目前我正在获得最后 7 条重复记录。
明月笑刀无情
哈士奇WWW