will_paginate 3.0.3視圖幫助文檔狀態「:remote - 根據link_to的實現將數據遠程或遠程屬性設置爲true(原文如此,https://github.com/mislav/will_paginate/wiki/the-will_paginate-view-helper)。will_paginate 3.0.3和數據遠程
通過滑軌3.2使用 「<%= will_paginate @collection,:遠程=>真%>」 呈現:
<div class="pagination" remote="true">
<span class="previous_page disabled">← Previous</span>
<em class="current">1</em>
<a href="/people?page=2" rel="next">2</a>
<a class="next_page" href="/people?page=2" rel="next">Next →</a>
</div>
即:有施加於連桿tag.s沒有數據的遠程屬性,但一個分頁div(看起來像文檔中描述的未知選項)。這裏的最後一篇文章(https://github.com/mislav/will_paginate/pull/100)指出:「我看到這個pull請求和引用的請求都是針對2.3版本的,3.0版本已經包含了這個特性。有人應該關閉這個。「
因此,我期待在由will_paginate生成的分頁鏈接標記中看到「data-remote ='true'」,因此它可以由Rails UJS處理。
我離開基地還是有人有這個工作?或者,是一個新的LinkRenderer仍然需要如下所述: http://jhonynyc.tumblr.com/post/4348012015/making-will-paginate-ajaxable-in-rails-3#notes
謝謝。
對於其他人在看這個,我沒有得到數據遠程通過自定義LinkRenderer添加到鏈接。到目前爲止,當前版本的WillPaginate在這方面的操作與之前的版本不同,我需要在此處採用這種方法:https://github.com/mislav/will_paginate/issues/158和https://gist.github。 com/1562185。然而,仍然對我的原始問題感到好奇。 – 2012-03-04 20:25:40