如何使用Angular 6在表分页上实现自动滑动?

时间:2019-03-17 04:05:36

标签: angular carousel angular-carousel

是否可以使用Carousel并利用我在表上的分页功能或自动滚动表页面上的任何相关内容?

我已经尝试过实现轮播,但似乎根本不起作用。

enter image description here

dashboard.component.html

<div class="row" >
<div eds-tile class="xl-12" style="width: 700px">
    <eds-tile-title>User on Shift</eds-tile-title>
<ngb-carousel *ngIf="carousel">
  <ng-template ngbSlide>
    <table class="table">
      <thead>
       <tr>
       <th *ngFor="let col of tablePresetColumns">
       {{col.content}}
       </th>
       <th></th>
       <th></th>
       </tr>
      </thead>
      <tbody>
        <div *ngIf='!tablePresetData' class="loading large"></div>
       <tr *ngFor="let row of tablePresetData | paginate: { itemsPerPage: 11, currentPage: p }; ">
        <td *ngFor="let cell of row"> {{cell.content}}</td>
       </tr>
      </tbody>
              <pagination-controls (pageChange)="p = $event"></pagination-controls>  
  </table>
  </ng-template>
</ngb-carousel>
</div>

然后是我的dashboard.component.ts

constructor(private activityService: ActivityService, private router: Router) { }
public apiData;
public carousel;
public tables;

ngOnInit() {

this.carousel = [1,2,3,4,5,6,7,8,9,10,11,12].map(()=> 'p:number = ${Math.random()}');

this.activityService.getAchievement().subscribe((res) =>  {
  this.apiData = res;

  var ids = [['Username', 1], ['Role', 2], ['today', 3], ['weekly', 4], ['monthly', 5], ['yearly', 6]],
  result = Object.keys(res).map(o => ids.map(([key, id]) => ({ id, content: res[o][key] })));
  this.tablePresetData = result;
})

如果有人能帮助我,我会得到加分

1 个答案:

答案 0 :(得分:0)

您可以使用ngx-pagination进行分页,使用非常简单。 安装方式:npm install ngx-pagination --save

以下链接中的

示例 enter link description here

致谢。