单击角度4更新表行

时间:2017-10-30 12:59:49

标签: angular

我有一张材料表:

<mat-table #table [dataSource]="dataSource">
  <ng-container matColumnDef="operation">
      <mat-header-cell *matHeaderCellDef> Action</mat-header-cell>
       <mat-cell *matCellDef="let row">
         <button (click)="approve(row.id)" mat-button>Approve</button>
         <button (click)="decline(row.id)" mat-button>Decline</button>
       </mat-cell>
</ng-container>

我想更新表格行或表格页面,以便人们可以立即查看更新状态。 Approve()将状态设置为&#39; Approve&#39;并拒绝()到&#39;拒绝&#39;。状态列在表中。如何从DB刷新行以让用户在线查看更改?

0 个答案:

没有答案