无法设置角材质 matColumnDef 属性 [英] Cannot set Angular Material matColumnDef property

查看:20
本文介绍了无法设置角材质 matColumnDef 属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个数据表,想更改 matColumnDef 属性的值.但是,与 [matColumnDef] 一起使用时,我无法更改它,如下所示:

I have a datatable and want to change the value for matColumnDef property. However, I cannot change it when using it with [matColumnDef] as shown below:

<ng-container *ngIf="hasButton" [matColumnDef]="action">

另一方面,当在没有括号matColumnDef的情况下更改其值时,相关部分不会在页面上呈现.那么,[matColumnDef]matColumnDef 有什么区别?为什么我不能按自由值设置它?

On th other hand, when change its value without bracket matColumnDef, the related part is not rendered on the page. So, what is the difference between [matColumnDef] and matColumnDef? And why I cannot set it by free value?

<ng-container *ngIf="hasButton" matColumnDef="action">

推荐答案

我不太确定你的表是如何设置的,但我可以在这个通用示例中让它工作

I am not exactly sure how your table is setup, but I could get it working in this generic example

控制器

export interface PeriodicElement {
  name: string;
  position: number;
  weight: number;
  symbol: string;
}

const ELEMENT_DATA: PeriodicElement[] = [
  { position: 1, name: "Hydrogen", weight: 1.0079, symbol: "H" },
  { position: 2, name: "Helium", weight: 4.0026, symbol: "He" },
  { position: 3, name: "Lithium", weight: 6.941, symbol: "Li" },
  { position: 4, name: "Beryllium", weight: 9.0122, symbol: "Be" },
  { position: 5, name: "Boron", weight: 10.811, symbol: "B" },
  { position: 6, name: "Carbon", weight: 12.0107, symbol: "C" },
  { position: 7, name: "Nitrogen", weight: 14.0067, symbol: "N" },
  { position: 8, name: "Oxygen", weight: 15.9994, symbol: "O" },
  { position: 9, name: "Fluorine", weight: 18.9984, symbol: "F" },
  { position: 10, name: "Neon", weight: 20.1797, symbol: "Ne" }
];

/**
 * @title Basic use of `<table mat-table>`
 */
@Component({
  selector: "table-basic-example",
  styleUrls: ["table-basic-example.css"],
  templateUrl: "table-basic-example.html"
})
export class TableBasicExample {
  action: string;
  displayedColumns: string[] = ["position"];
  dataSource = ELEMENT_DATA;

  showColumn(column: string) {
    this.action = column;
    this.displayedColumns = ["position", column];
  }
}

模板

<button md-raised-button color="primary" (mouseup)="showColumn('name')">
  Show Name
</button>
<button md-raised-button color="primary" (mouseup)="showColumn('weight')">
  Show Weight
</button>
<button md-raised-button color="primary" (mouseup)="showColumn('symbol')">
  Show Symbol
</button>

<table mat-table [dataSource]="dataSource" class="mat-elevation-z8">
  <!--- Note that these columns can be defined in any order.
        The actual rendered columns are set as a property on the row definition" -->

  <!-- Position Column -->
  <ng-container matColumnDef="position">
    <th mat-header-cell *matHeaderCellDef>No.</th>
    <td mat-cell *matCellDef="let element">{{element.position}}</td>
  </ng-container>

  <!-- Name Column -->
  <ng-container [matColumnDef]="action">
    <th mat-header-cell *matHeaderCellDef>{{ action }}</th>
    <td mat-cell *matCellDef="let element">{{element[action]}}</td>
  </ng-container>

  <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
  <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>

工作示例:Stackblitz

需要注意的重要一点是根据要显示的列修改displayedColumns变量.

Important thing to note is to modify the displayedColumns variable according to the columns to be displayed.

这篇关于无法设置角材质 matColumnDef 属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆