我想使用 a<mat-table>
来显示选项的名称及其对应的给定值(供用户更改)。由于选项可能需要通过不同的方式设置它们的值(例如滑动切换或垫选择),我必须在没有数据源的情况下写下来(或者至少据我所知,不能在打字稿文件中使用预先编写的 html 标签)。
因此,我的 MWE 将是这样的:
<mat-table>
<mat-header-row *matHeaderRowDef>
<mat-header-cell>header</mat-header-cell>
</mat-header-row>
<mat-row>
<mat-cell>
cell
</mat-cell>
</mat-row>
</mat-table>
但是,当我查看我的页面时,它只显示一行没有任何字符串。我想在一个<mat-card>
(或者更确切地说<mat-card-content>
)内使用这个表,但即使我在外面尝试它,我也只是得到了这条线而没有别的。这是它在垫卡中的样子:
如何正确显示表格?
*编辑:* 因为它是被要求的,所以这里也是 .ts 文件。
import { Component, OnInit, ViewChild } from '@angular/core';
@Component({
selector: 'app-general',
templateUrl: './general.component.html',
styleUrls: ['./general.component.scss']
})
export class GeneralComponent implements OnInit {
@ViewChild('resolutionSelect') resolutionSelect: MatSelect;
resolutions: ResolutionOptionsInterface[] = [
{ value: '1920 x 1080' },
{ value: '800 x 600' }
];
public selectedRes = this.resolutions[0];
public isFullscreenEnabled = true;
constructor() { }
ngOnInit() {
console.log("in oninit");
this.resolutionSelect.value = this.resolutions[0].value;
}
}
这比最小的工作示例要多一些,所以我将解释一下:
- 我的选择之一是分辨率,可以通过
mat-select
- 这
mat-select
在 html 文件中定义如下 - 这
mat-select
将被赋予预定义的值,如resolutions
数组中定义的那样 我的另一个选择就是选择全屏,使其成为
mat-slide-toggle
(但是,这还没有完全实现)<mat-select #resolutionSelect fxFlex="200px"> <mat-option *ngFor="let res of resolutions" [value]="res.value" class="right"> {{res.value}} </mat-option> </mat-select>