Created
July 25, 2020 02:42
-
-
Save re4388/64686c7b8ac4f5c54b39756e60846878 to your computer and use it in GitHub Desktop.
前端處理和後端處理
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ngAfterViewInit() { | |
| this.httpClient.get<any>(`https://api.github.com/search/issues?q=repo:angular/material2&page=${this | |
| .currentPage.pageIndex + 1}`).subscribe(data => { | |
| this.totalCount = data.items.length; | |
| this.emailsDataSource.data = data.items; | |
| // no need below line anymore | |
| // this.emailsDataSource.paginator = this.paginator; | |
| }); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment