<legend id='D8fIM'><style id='D8fIM'><dir id='D8fIM'><q id='D8fIM'></q></dir></style></legend>

        <bdo id='D8fIM'></bdo><ul id='D8fIM'></ul>
      1. <small id='D8fIM'></small><noframes id='D8fIM'>

        <tfoot id='D8fIM'></tfoot>
        <i id='D8fIM'><tr id='D8fIM'><dt id='D8fIM'><q id='D8fIM'><span id='D8fIM'><b id='D8fIM'><form id='D8fIM'><ins id='D8fIM'></ins><ul id='D8fIM'></ul><sub id='D8fIM'></sub></form><legend id='D8fIM'></legend><bdo id='D8fIM'><pre id='D8fIM'><center id='D8fIM'></center></pre></bdo></b><th id='D8fIM'></th></span></q></dt></tr></i><div id='D8fIM'><tfoot id='D8fIM'></tfoot><dl id='D8fIM'><fieldset id='D8fIM'></fieldset></dl></div>

        无限滚动和 will_paginate 多次附加项目的“下一页"

        Infinite scroll and will_paginate appending the #39;next page#39; of items multiple times(无限滚动和 will_paginate 多次附加项目的“下一页)
          <bdo id='ec3Jp'></bdo><ul id='ec3Jp'></ul>

          1. <tfoot id='ec3Jp'></tfoot>
              <tbody id='ec3Jp'></tbody>

            <small id='ec3Jp'></small><noframes id='ec3Jp'>

                  <legend id='ec3Jp'><style id='ec3Jp'><dir id='ec3Jp'><q id='ec3Jp'></q></dir></style></legend>
                  <i id='ec3Jp'><tr id='ec3Jp'><dt id='ec3Jp'><q id='ec3Jp'><span id='ec3Jp'><b id='ec3Jp'><form id='ec3Jp'><ins id='ec3Jp'></ins><ul id='ec3Jp'></ul><sub id='ec3Jp'></sub></form><legend id='ec3Jp'></legend><bdo id='ec3Jp'><pre id='ec3Jp'><center id='ec3Jp'></center></pre></bdo></b><th id='ec3Jp'></th></span></q></dt></tr></i><div id='ec3Jp'><tfoot id='ec3Jp'></tfoot><dl id='ec3Jp'><fieldset id='ec3Jp'></fieldset></dl></div>

                1. 本文介绍了无限滚动和 will_paginate 多次附加项目的“下一页"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在关注 this railscast 试图在我的轨道应用程序.当用户向下滚动到页面底部时,会附加一组新的项目并且页面会扩展,但是它会多次附加到页面,并且即使数组中的所有项目都已加载,事件也会在向下滚动时再次触发, 多次附加相同的项目集.

                  I am following this railscast in trying to implement an infinite scroll page on my rails app. When a user scrolls down to the bottom of the page an new set of items is appended and the page extends, however it is appended to the page multiple times and the event triggers again on scrolldown even when all the items in the array have been loaded, appending the same set of items again multiple times.

                  我想要的是每次用户滚动到底部时附加项目的下一页",并在用户再次滚动到底部时附加后续页面.

                  What I would like is to append the 'next page' of items each time a user scrolls to the bottom, and subsequent next pages as the user scrolls to the bottom again.

                  这里是这个函数的 jQuery:

                  Here is the jQuery for this function:

                  jQuery ->
                    if $('.pagination').length
                            $(window).scroll ->
                                    url = $('.pagination .next_page').attr('href')
                                    if url &&  $(window).scrollTop() > $(document).height() - $(window).height() - 50
                                        $('.pagination').text('Fetching more products...')
                                        $.getScript(url)
                  $(window).scroll()
                  

                  这里是对应的javascript

                  and here is the corresponding javascript

                  $('#products').append('<%= j render(@products) %>');
                  <% if @products.next_page %>
                      $('.pagination').replaceWith('<%= j will_paginate(@products) %>');
                  <% else %>
                      $('.pagination').remove();
                  <% end %>
                  

                  推荐答案

                  当用户从底部滚动到 50px 时,您的代码将触发 $.getScript(url) 调用.如果他们从底部滚动到 49px,则再次调用.然后另一个如果他们从底部滚动到 48px,这将一直持续到一个 AJAX 调用返回并使页面变高;一旦页面变高,您将超出 50 像素区域,获取更多产品... 将停止.

                  Your code will trigger a $.getScript(url) call when the user scrolls to 50px from the bottom. Then another call at if they scroll to 49px from the bottom. Then another if they scroll to 48px from the bottom and this will continue until one of the AJAX calls returns and makes the page taller; once the page is taller, you'll be outside the 50px zone and the Fetching more products... will stop.

                  您一次只需要一个 getScript.一旦他们滚动到 50px 区域,您想从服务器获取更多内容(仅一次)然后忽略后续滚动,直到服务器响应.

                  You only want one getScript going at a time. Once they scroll into the 50px zone, you want to fetch some more stuff from the server (just once) then ignore subsequent scrolls until the server has responded.

                  你应该做更多这样的事情:

                  You should be doing something more like this:

                  $(window).scroll ->
                      # Bail out right away if we're busy loading the next chunk.
                      return if(window.pagination_loading)
                  
                      url = $('.pagination .next_page').attr('href')
                      if url &&  $(window).scrollTop() > $(document).height() - $(window).height() - 50
                          # Make a note that we're busy loading the next chunk.
                          window.pagination_loading = true
                  
                          # Load as before but attach a callback to clear the flag when we're done.
                          $('.pagination').text('Fetching more products...')
                          $.getScript(url).always -> window.pagination_loading = false
                  

                  $.getScript 返回一个 jqXHRjqXHRalways 回调将在底层 $.ajax 调用结束.

                  这篇关于无限滚动和 will_paginate 多次附加项目的“下一页"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
                  Rails 3.1 ajax:success handling(Rails 3.1 ajax:成功处理)
                  CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
                  Ordinals in words javascript(javascript中的序数)
                  getFullYear returns year before on first day of year(getFullYear 在一年的第一天返回前一年)
                  How do I make a TextGeometry multiline? How do I put it inside a square so it wraps like html text does inside a div?(如何制作 TextGeometry 多线?如何将它放在一个正方形内,以便它像 html 文本一样包裹在 div 内?) - IT屋-程序员软件开发技术分享社
                    <tfoot id='DzRGT'></tfoot>
                  • <i id='DzRGT'><tr id='DzRGT'><dt id='DzRGT'><q id='DzRGT'><span id='DzRGT'><b id='DzRGT'><form id='DzRGT'><ins id='DzRGT'></ins><ul id='DzRGT'></ul><sub id='DzRGT'></sub></form><legend id='DzRGT'></legend><bdo id='DzRGT'><pre id='DzRGT'><center id='DzRGT'></center></pre></bdo></b><th id='DzRGT'></th></span></q></dt></tr></i><div id='DzRGT'><tfoot id='DzRGT'></tfoot><dl id='DzRGT'><fieldset id='DzRGT'></fieldset></dl></div>
                      <bdo id='DzRGT'></bdo><ul id='DzRGT'></ul>

                      <legend id='DzRGT'><style id='DzRGT'><dir id='DzRGT'><q id='DzRGT'></q></dir></style></legend>

                            <small id='DzRGT'></small><noframes id='DzRGT'>

                              <tbody id='DzRGT'></tbody>