是否可以简单地使用 ajax 运行 knp 分页器?有没有可能,最好的方法是什么?
问候迈克尔
不确定这是否是最好的解决方案,但我是这样做的:
$(function(){ $('#dish-select-component-canvas').on('click', "ul.pagination a" , function(e){
$.ajax({
type: "GET",
url: $(this).attr('href'),
})
.done(function( msg ) {
$('#dish-select-component-items').html(msg);
});
e.preventDefault();
});
});
#dish-select-component-canvas
是页面的容器。当有人在链接中单击此画布时ul.pagination
(分页是knpPaginator
默认情况下用作分页包装的类),我采用该链接的 href 属性,并使用 ajaxGET
请求发送它。该请求的结果将转到适当的 div(此处为#dish-select-component-items
)。当然你必须记得添加e.preventDefault()
以防止浏览器重新加载页面。