我想使用 mat-card 指令来展示我的产品。角度材料docs在我看来并不彻底。我在互联网上找到了很多使用带 dataSource 的表格(example 1,example 2)
现在我获得所有产品的 productList 并使用 ngFor 进行迭代。我在页面上显示所有产品。如何将 productList 提供给分页器并使用已处理的数据进行迭代( paginationList )。
* component.html文件显示所有产品:
<mat-paginator #paginator
[length]="productList.length"
[pageSize]="5"
[pageSizeOptions]="[5, 10, 25, 100]"
[showFirstLastButtons]="true"
</mat-paginator>
<ng-container *ngIf="productList.length; else notHeaveProducts">
<mat-card class="product-card" *ngFor="let product of productList">
<mat-card-header>
<mat-card-title>
<h3>{{ product.title }}</h3>
</mat-card-title>
</mat-card-header>
<img mat-card-image [src]="product.img_url" [alt]="product.title" [title]="product.title">
<mat-card-content>
<p>{{ product.description }}</p>
</mat-card-content>
<mat-card-actions>
<button mat-raised-button color="accent" (click)="addItemToCard(product)">Add to card</button>
</mat-card-actions>
</mat-card>
</ng-container>
* component.ts
export class ListComponent implements OnInit, OnDestroy {
public productList: Product[] = [];
public paginationList: Product[] = [];
ngOnInit() {
// I receive the products
this.activatedRoute.params.subscribe((params: any) => {
this.catalogService.getProductList()
.do((products: any) => {
this.productList = products;
})
.subscribe();
}
}
}
答案 0 :(得分:1)
This Post回答了问题。
observableData: Observable<any>;
ngOnInit() {
this.observableData = this.dataSource.connect();
}
并在您的HTML文件中。
<mat-card *ngFor="let item of observableData | async">
</mat-card>
我能够使此代码正常工作。如果上面的代码不足以解释,我可以在此处发布整个代码(该代码位于另一台计算机上,因此现在不粘贴)。另请参见上面的代码是在此处手写的(不是从编辑器粘贴的),因此可能会遇到小故障。
希望有帮助。
答案 1 :(得分:1)
我有完全相同的要求,并且我使用了 mat-paginator和包含mat-cards的mat-grid-list 来做到这一点。我使用了mat-grid-list来使列表具有响应性,从而可以调整no。根据屏幕大小连续排列的元素数。这是我所做的:
<mat-paginator [length]="length"
[pageSize]="pageSize"
[pageSizeOptions]="pageSizeOptions"
(page)="pageEvent = OnPageChange($event)">
</mat-paginator>
<mat-grid-list [cols]="breakpoint" rowHeight="4:5" (window:resize)="onResize($event)" >
<mat-grid-tile *ngFor="let product of pagedList">
<div>
<mat-card class="example-card">
mat-card content here..
</mat-card>
</div>
</mat-grid-tile>
</mat-grid-list>
这是组件的样子:
productsList: Product[]= [];
pagedList: Product[]= [];
breakpoint: number = 3; //to adjust to screen
// MatPaginator Inputs
length: number = 0;
pageSize: number = 3; //displaying three cards each row
pageSizeOptions: number[] = [3, 6, 9, 12];
ngOnInit() {
this.breakpoint = (window.innerWidth <= 800) ? 1 : 3;
this.productsList = <GetOrInitializeYourListHere>;
this.pagedList = this.productsList.slice(0, 3);
this.length = this.productsList.length;
});
}
OnPageChange(event: PageEvent){
let startIndex = event.pageIndex * event.pageSize;
let endIndex = startIndex + event.pageSize;
if(endIndex > this.length){
endIndex = this.length;
}
this.pagedList = this.productsList.slice(startIndex, endIndex);
}
onResize(event) { //to adjust to screen size
this.breakpoint = (event.target.innerWidth <= 800) ? 1 : 3;
}
希望有帮助。