Добавление первой и последней страницы в ngx-pagination - angular 9 - PullRequest
1 голос
/ 25 апреля 2020

Я использую библиотеку ngx-pagination для моего angular приложения. Помимо предыдущей и следующей кнопки, я хочу добавить еще 2 кнопки к go непосредственно на последней странице или на первой странице. Как мне этого добиться?

Шаблон логи c

import { Component, OnInit } from '@angular/core';
import { TestimonialsDataService } from '../../services/testimonials-data.service';

@Component({
  selector: 'app-card',
  templateUrl: './card.component.html',
  styleUrls: ['./card.component.scss']
})
export class CardComponent implements OnInit {
  public authors: Object = {};
  public pageList: number = 1;

  constructor(private _testimonialsService: TestimonialsDataService) { }

  ngOnInit(): void {
    this._testimonialsService.getData().subscribe(data => this.authors = data);
  }

}
image
...