出现错误“类型'ListComponent'上不存在属性'tpl'。”使用角材料表

时间:2019-12-27 05:21:04

标签: angular angular-material-5 angular-material-table

在实施角材表格时出现以下错误。

错误:

  

类型'ListComponent'上不存在属性'tpl'。

我在下面解释我的代码。

<div class="mt-9">
                <table mat-table [dataSource]="dataSource" matSort (matSortChange)="sortChange($event)">

                    <tr mat-header-row *matHeaderRowDef="displayColumns(); sticky: true"></tr>
                    <tr mat-row *matRowDef="let row; columns: displayColumns();" matRipple class="element-row"
                        [cdkDetailRow]="row" [cdkDetailRowTpl]="tpl"></tr>
                </table>
                <div *ngIf="!dataSource || dataSource?.length === 0" class="text-center mt-5 text-danger">
                    <h6>No records found</h6>
                </div>
                <mat-paginator [pageSizeOptions]="[10, 25, 50, 100]" [pageSize]="pageSize" [pageIndex]="pageIndex"
                    [length]="totalCount" (page)="pageChange($event)" showFirstLastButtons></mat-paginator>
            </div>

我在这里使用[cdkDetailRowTpl]="tpl",并且此错误即将到来。我需要一些帮助来解决此错误。

1 个答案:

答案 0 :(得分:0)

tpl应该在列表组件中声明

列表组件:

export class ListComponent implements OnInit {
  tpl: any;

  constructor() { }

  ngOnInit() {
  }

}