在这里,我试图根据项目数量显示分页。 如果项目的数量超过它应该显示的5,那么它应该隐藏 分页。
$scope.do = { showPaging: false };
<div class="row">
<ul uib-pagination total-items="totalItems" ng-model="currentPage" boundary-links="true"
items-per-page="itemsPerPage" class="pagination-sm" ng-show="{{do.showPaging}}"></ul>
</div>
答案 0 :(得分:1)
ng-show="{{show}}"
时没有2路绑定
ng-show="show"
有2路绑定。