Я новичок в angularjs. Я использую https://angular-ui.github.io/bootstrap/#/pagination. У меня есть проблема: класс стиль = "нумерации страниц с нумерацией страниц-Л.Г." не работает, я использую бутстраповских версии 4. Справка me.thankshttps://angular-ui.github.io/bootstrap/#/pagination class = "pagination pagination-lg" не работает в bootstrap 4
index.html
<div>
<pre>You are currently on page {{userCtrl.page}}</pre>
<ul uib-pagination total-items="userCtrl.totalElements" ng-model="userCtrl.page" max-size="10000" class="pagination pagination-lg"
boundary-links="true" num-pages="userCtrl.totalPages">
</ul>
</div>
userController.js
module.exports = function (UserService) {
var _this = this;
_this.users = [];
_this.page = [];
_this.size = [];
_this.totalElements = [];
_this.totalPages = [];
_this.list = function() {
UserService.getUsersPage().then(function (response) {
console.log(response);
_this.users = response.content;
_this.page = response.number;
_this.size = response.numberOfElements;
_this.totalElements = response.totalElements;
_this.totalPages = response.totalPages;
})
};
_this.list();
};