我有一个脚本,当用户滚动到底部时会加载新产品。该脚本有效,但我有两个问题。那是 a)脚本加载page1两次 b)脚本一次加载所有页面而不是当时加载一页
有谁知道解决方案?我的知识有限,所以任何帮助都非常感激。
我的剧本
<script type="text/javascript">
$(document).ready(function(){
// var pageSize = {{ collection.limit }};
var currentPage = 1;
var collectionPages = {{ collection.pages }};
var category = '{{ collection.internal.url }}';
// Appends the new product to the UI
var appendProduct = function(product, id) {
$('<div class="product"></div>')
.html(product)
.appendTo($(".productsGrid"));
var i = 1;
$('.product').each(function() {
if(i++ % 3 == 0)
$(this).addClass('last');
});
};
// Load the next products page
var loadProducts = function() {
var url = "http://shop.com/"+category+"/page"+currentPage+".ajax";
$.getJSON(url,function(data) {
$.each(data.products, function(index, product) {
appendProduct('<a href="'+product.url+'" title="'+product.fulltitle+'">' +
'<img src="'+product.image+'" width="180" height="150" alt="'+product.fulltitle+'" title="'+product.fulltitle+'"'+'</a>' +
'<div class="info"><h3><a href="'+product.url+'" title="'+product.fulltitle+'">'+product.fulltitle+''+'</a></h3>' +
'<div class="price">'+product.price.price_money+''+'</div>' +
'<div class="gridAddToCart"><a class="button grey" href="'+product.url+'" title="'+product.fulltitle+'" rel="nofollow">'+'<span>{{ 'Details' | t }}</span></a>' +
'<div style="margin-top:2px;"></div>' +
'<a class="opener button blue" href="http://meules1.webshopapp.com/cart/add/'+product.vid+'" title="'+product.fulltitle+'" rel="nofollow"><span>{{ 'Add to cart' | t }}</span></a>'
+ '<div class="clear"></div>' +
'</div><div class="clear"></div></div>'
);
});
// We're done loading the products, so hide the overlay and update the UI
$("#overlay").fadeOut();
});
};
// First time, directly load the products
loadProducts();
// Append a scroll event handler to the container
$(window).scroll(function() {
// activate new load when scrollbar reaches 150 pixels or less from the bottom
if($(window).height() + $(window).scrollTop() >= $(document).height() - 350) {
if(currentPage <= collectionPages) {
$("#overlay").fadeIn();
loadProducts();
currentPage++;
}
}
});
});
</script>
答案 0 :(得分:2)
在运行loadProducts
功能后,您正在递增页码:
if(currentPage <= collectionPages) {
$("#overlay").fadeIn();
loadProducts();
currentPage++
}
你应该试试这个:
if(currentPage <= collectionPages) {
$("#overlay").fadeIn();
currentPage++; //Moved this ABOVE loadProducts()
loadProducts();
}
您在window.scroll
执行的代码可能会在用户到达底部时多次触发,这意味着所有页面都会立即加载。解决此问题的一种方法是,只有在您的叠加层不可见时才运行代码:
// Append a scroll event handler to the container
$(window).scroll(function() {
// activate new load when scrollbar reaches 150 pixels or less from the bottom
if(($(window).height() + $(window).scrollTop() >= $(document).height() - 350) && $("#overlay").is(":hidden")) {
或者,您可以设置像var loading_page = false
这样的全局变量。当您开始加载页面时将其切换为true,在新页面完全加载后将其切换回false,并且仅在loading_page
变量为false时允许滚动代码执行。
答案 1 :(得分:0)
这种情况正在发生,因为脚本会触发两次,即您的ajax调用必须多次执行。与HttpFox一起,你将能够观察到这一点。当我实现虚拟滚动时,我面临同样的问题。
使用某种标志来监控此情况。请检查以下网址/问题。这包含我的虚拟滚动脚本,我已经避免了这个问题。 https://stackoverflow.com/questions/19049088/page-clicks-not-working-during-virtual-scroll