无限滚动:从数据库加载所有数据并滚动显示更多

时间:2016-04-23 03:54:13

标签: javascript php jquery ajax

我在项目中使用无限滚动。首先,它将从MySQL数据库中获取少量记录并在页面上显示。页面向下滚动后,它会向服务器发出ajax查询并加载更多数据。

是否可以以json格式从mysql数据库一次获取所有数据,然后在客户端执行更多加载。所以,基本上我不想要数据库的ajax请求。

如果我在页面滚动时发出ajax请求,这个代码工作正常。

flag = true;
$(window).scroll(function() {
    if($(window).scrollTop() + $(window).height() == $(document).height()){
        first = $('#first').val();
        limit = $('#limit').val();
        no_data = true;
        if(flag && no_data){
            flag = false;
            $('#loader').show();
            $.ajax({
                url : 'ajax_html.php',
                method: 'post',
                data: {
                   start : first,
                   limit : limit
                },
                success: function( data ) {
                    flag = true;
                    $('#loader').hide();
                    if(data !=''){

                        first = parseInt($('#first').val());
                        limit = parseInt($('#limit').val());
                        $('#first').val( first+limit );
                        $('#timeline-conatiner').append( '<li class="year">'+year+'</li>');

                        $('#timeline-conatiner').append( data );
                        year--;
                    }else{
                        alert('No more data to show');
                        no_data = false;
                    }
                },
                error: function( data ){
                    flag = true;
                    $('#loader').hide();
                    no_data = false;
                    alert('Something went wrong, Please contact admin');
                }
            });
        }


    }
}); 

3 个答案:

答案 0 :(得分:1)

这是未经测试的,只是该方法的一个示例,抱歉,我没有时间进行完整的示例,但这应该会给你一个想法。

 //data cache
 var cache = ['one','two', 'three' .....];
 //current location in cache
 var current = 0; 
 //ajax request object
 var request;

 if($(window).scrollTop() + $(window).height() == $(document).height()){
      var cache_total = cache.length;
      //add next item to page & increase the current pointer
      $('#timeline-conatiner').append( cache[current] );
      ++current;

      if( current - cache.length < 50 ){
           //if we only have 50 items not shown in cache pull next results with ajax and add to cache

           if( !request ){
                //also youll want to keep track if you have a pending request that hasn't returned yet, to prevent race conditions.
                request = $.ajax( .... ).success( function( data ){
                     $.extend( cache, data ); //or push each if you like
                }).always( function(){
                     request = false; //should be false on finish but just because.
                });
            } //end if request

       //make sure to properly offset the data using the total in the cache to prevent pulling duplicates. eg SELECT ... LIMIT {cache.length}, 50
      } // end if cached
 } //end scroll

查看上面提到的问题是用户需要等待ajax调用完成,这实质上将其转换为同步请求(如重新加载页面)。你想让它保持异步,就像ajax一样。因此,不是显示ajax的结果,而是缓冲它们并保留一些未显示的数据。然后滚动显示一些缓冲的数据,然后填充缓存备份。

显然,这使得代码变得更加复杂,但优点是你不需要同时提取大量数据,并且用户不会因为停止ajax请求而得到延迟。您必须平衡请求所花费的时间与缓存中的数据量,以便始终在其中包含一些数据。这取决于渲染所需的空间data以及ajax查询所需的时间。

答案 1 :(得分:1)

如果已检索到所有数据并将其添加到DOM,则以下脚本可能会有所帮助。首先将hidden类添加到额外元素。创建DOM后运行此脚本。

$(".elements").each(function(index, el) { // `elements` is the common class for all elements on which this functionality is to be done
    if (index >= maxLimitToShow) { // maxLimitToShow - number of elements to show in the beginning
        $(el).addClass("hidden"); // for extra elements
    }
});

为课程hidden添加css

.hidden {
    display: none;
}

检查滚动到达页面底部的时间以显示更多项目。

$(window).scroll(function() {
   if($(window).scrollTop() + $(window).height() == $(document).height()) {  // checks if scroll reached at bottom
       var elements = $(".elements.hidden"); // fetch all hidden elements
       elements.each(function (index, el) {
         if (index < singleRowLimit) { // singleRowLimit  - number of elements to show in one scroll
             $(el).removeClass('hidden');
         }
     });
   }
});

编辑 - 不使用CSS - 隐藏/显示

如果已检索到所有数据并将其添加到DOM,则以下脚本可能会有所帮助。首先将hidden类添加到额外元素。创建DOM后运行此脚本。

$(".elements").each(function(index, el) { // `elements` is the common class for all elements on which this functionality is to be done
    if (index >= maxLimitToShow) { // maxLimitToShow - number of elements to show in the beginning
        $(el).addClass("hidden").hide(); // for extra elements
    }
});

检查滚动到达页面底部的时间以显示更多项目。

$(window).scroll(function() {
   if($(window).scrollTop() + $(window).height() == $(document).height()) {  // checks if scroll reached at bottom
       var elements = $(".elements.hidden"); // fetch all hidden elements
       elements.each(function (index, el) {
         if (index < singleRowLimit) { // singleRowLimit  - number of elements to show in one scroll
             $(el).removeClass('hidden').show();
         }
     });
   }
});

答案 2 :(得分:1)

我会说你根本不需要无限卷轴(或其他任何东西)来做你想要的......但是因为你有一切都很好用,我怀疑你可能会认为你想要那个&#39;懒加载&#39;类型功能在某些时候回来你可以做懒惰的事情......

只需尝试使用第一个并限制示例中的参数值...

...说 第一个= 0和 限制=一些非常大的数字...

我认为你可以设置一些值并在页面加载时强制单个ajax调用。