我正在使用Bootstrap UI Pagination对搜索结果页面进行分页,并且还希望在URL中存储查询,当前页面和页面大小,以便用户可以共享:
http://localhost:39519/#?q=security&limit=10&page=2
问题是,当我浏览链接时,显示第二页但过了一会儿(当加载DOM时)当前页面重置并且第一页是 显示。
以下是plunker,但我不知道如何模拟URL中的更改。
<uib-pagination ng-show="total" direction-links="false" boundarylinks="true" items-per-page="pageSize" total-items="total" ng-change="pageChanged()" ng-model="currentPage"></uib-pagination>