是否可以简单地使用ajax运行knp paginator?它是否可能,最好的方法是什么?
问候迈克尔
答案 0 :(得分:7)
不确定这是否是最佳解决方案,但我是这样做的:
$(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属性,并使用ajax {{1}发送它请求。
该请求的结果将转到相应的div(此处为GET
)。当然,您必须记住添加#dish-select-component-items
以防止浏览器重新加载页面。