我试图允许用户更改要显示的表中的行数。该Web应用程序可在所有类型的设备上使用,因此用户将需要能够选择要显示的行数以最大程度地减少滚动。

这是javascript模型

$scope.pageSizes = [
  { size: 10},
  { size: 25, isSelected: true },
  { size: 50}
];

HTML代码。这是我的页面大小选择器。
<li ng-repeat="pageSize in pageSizes">
  <a href="javascript:void(0)" ng-click="changePageSize(pageSize.size)"><span ng-class="{ orange: pageSize.isSelected }">{{pageSize.size}}</span></a>
</li>

和表在同一个HTML文件中。
<table st-table="users" st-safe-src="safeUsers" class="table-striped argus-table">
  <thead>
    <tr>
      <th st-sort="id" class="sortable min-width">Id</th>
      <th st-sort="username" class="sortable">Username</th>
      <th st-sort="email" class="sortable">Email</th>
      <th class="table-action-header"></th>
      <th class="table-action-header"></th>
      <th class="table-action-header"></th>
    </tr>
  </thead>
  <tbody>
    <tr ng-repeat="user in users">
      <td>ID</td>
      <td>Username</td>
      <td>Email</td>
      <td>Option 1</td>
      <td>Option 2</td>
      <td>Option 3</td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <td class="text-center" st-pagination="" st-items-by-page="25" colspan="6"></td>
    </tr>
  </tfoot>
</table>



我尝试使用范围函数来查找新选择的
$scope.changePageSize = function (pageSize) {
  $scope.filter.pageSize = pageSize;

  _.find($scope.pageSizes, function (page) {
    if (page === pageSize) {
      $scope.selectedPageSize = page.size;
      page.isSelected = true;
    }
    else
      page.isSelected = false;
  });
};

还有页脚
<tfoot>
  <tr>
    <td class="text-center" st-pagination="" st-items-by-page="{{selectedPageSize}}" colspan="6"></td>
  </tr>
</tfoot>

但是,这会导致错误



任何帮助,将不胜感激。谢谢

最佳答案

不要使用模板符号({{scopeValue}})在每页上提供项目,而只需提供一个表达式即可解析为$scope上的值

这个

st-items-by-page="{{selectedPageSize}}"

应该是这样的
st-items-by-page="selectedPageSize"

docs中有一个示例

关于javascript - 从 Angular 范围值动态更改分页页面大小,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36744878/

10-09 07:45