我想将整行传递给其他组件以显示此数据,任何机构都有办法做到这一点。
html:
<mat-row *matRowDef="let row; columns: displayedColumns;" (click)="getRecord(row)"></mat-row>
ts:
//Get row data when the click
getRecord(row){
// Do somthing ..... //
}
我会搜索很多,我找不到路。