由于this thread,我需要使用ui-bootstrap-tpls.js
的高版本。但是,我发现这被禁用了bootstrap pagination
,它与较低版本的ui-bootstrap-tpls.js
一起使用。
例如,this pagination works与https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/0.11.0/ui-bootstrap-tpls.js
,而https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.5.0/ui-bootstrap-tpls.js
does not work。
有谁知道我能做什么?
答案 0 :(得分:4)
请尝试使用此plunk:
<ul uib-pagination total-items="totalItems" ng-model="currentPage" items-per-page="itemsPerPage" ng-change="pageChanged()"></ul>
而不是:
<pagination total-items="totalItems" items-per-page="itemsPerPage" ng-model="currentPage" ng-change="pageChanged()"></pagination>