angular中使用matSort对表格进行排序

https://material.angular.io/components/sort/overview

<ng-container matColumnDef="start_at">
        <th mat-header-cell *matHeaderCellDef mat-sort-header class="table-header"> start time </th>
        <td mat-cell *matCellDef="let appointment"> {{appointment.start_at|date:'yyyy-MM-dd HH:mm'}} </td>
      </ng-container>
'''
matColumnDef="start_at"和appointment.start_at|date:'yyyy-MM-dd HH:mm'中的start_at这个变量名称要相同,不然会出现已经使用了mat-sort-header出现了箭头,点击确没有反应的情况