admin管理员组文章数量:1331645
I have this codepen, and using the function '$scope.pageChanged'
to see when a page is changed.
$scope.pageChanged = function() {
$log.log('Page changed to: ' + $scope.currentPage);
};
But when I click on page links (changing a page), the variable '$scope.currentPage'
doesn't changes. Why?
I think is something about the filter
, but not sure.
I have this codepen, and using the function '$scope.pageChanged'
to see when a page is changed.
$scope.pageChanged = function() {
$log.log('Page changed to: ' + $scope.currentPage);
};
But when I click on page links (changing a page), the variable '$scope.currentPage'
doesn't changes. Why?
I think is something about the filter
, but not sure.
1 Answer
Reset to default 10Change
$scope.currentPage = 1;
to
$scope.pagination = {
currentPage: 1
};
And as a consequence, it should be:
... pagination: pagination.currentPage
... ng-model="pagination.currentPage"
... $log.log('Page changed to: ' + $scope.pagination.currentPage);
You can group also other variables like maxSize
in pagination
. Avoid to bind primitives directly to the $scope
.
Codepen
本文标签: javascriptscopecurrentPage not updatingAngular Ui PaginationStack Overflow
版权声明:本文标题:javascript - $scope.currentPage not updating - Angular Ui Pagination - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742270685a2444246.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论