我正在使用 will_paginate gem 和 jQuery waypoint。当它获得第二页时效果很好,但是当它获得第三页时它会附加两次。
这是代码:
$(".pagination .next_page").waypoint ->
url = $(this).attr('href')
$.getJSON url, (data) ->
$(".pagination").remove()
$(".items_container").append data.items
我尝试添加.on "waypoint", ->
and off().on "waypoint" ->
,但它仍然将结果附加两次..
有任何想法吗?