AngularJS ng-show =“{{show}}”没有双向绑定

时间:2017-09-29 21:16:24

标签: angularjs

在这里,我试图根据项目数量显示分页。 如果项目的数量超过它应该显示的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>

1 个答案:

答案 0 :(得分:1)

ng-show="{{show}}"

时没有2路绑定
ng-show="show"

有2路绑定。