我正在使用带有 angular8 的 mat 表导出器包将 mat 表导出到 xlsx,但在我的一个列中,我在标题内有一个选择框,因此在导出表后,我得到了包含所有选择值的特定列的名称。导出时有什么方法可以修剪列或编辑列名
有什么办法我只能将位置显示为标题名称而不是 excel 表中的选择框
这就是我的垫头的样子
<ng-container matColumnDef="employeePosition">
<th mat-header-cell *matHeaderCellDef> Position
<div class="position">
<select style="font-size: 10px;" (change)="applyFilter($event.target.value)">
<option *ngFor="let data of positions" [value]="data.value">{{data.viewValue}}</option>
</select>
</div>
</th>
<td mat-cell *matCellDef="let row"> {{row.employeePosition}} </td>
</ng-container>