要取消选择MatStepper中的所有步骤,可以使用以下代码示例:
import { MatStepper } from '@angular/material/stepper';
import { ViewChild } from '@angular/core';
@ViewChild(MatStepper) stepper: MatStepper;
cancelSelection() {
this.stepper.reset(); // 重置MatStepper
this.stepper.selectedIndex = -1; // 将选定的索引设置为-1,取消选择所有步骤
}
完整的组件类代码示例:
import { Component, ViewChild } from '@angular/core';
import { MatStepper } from '@angular/material/stepper';
@Component({
selector: 'app-stepper',
templateUrl: './stepper.component.html',
styleUrls: ['./stepper.component.css']
})
export class StepperComponent {
@ViewChild(MatStepper) stepper: MatStepper;
cancelSelection() {
this.stepper.reset();
this.stepper.selectedIndex = -1;
}
}
完整的模板代码示例:
步骤1
步骤2
步骤3
这样,当点击“取消选择”按钮时,MatStepper中的所有步骤都将取消选择。
上一篇:Angular Material的matStepLabels在初始时未显示
下一篇:Angular Material的MatTableDataSource在从一个组件重定向到另一个组件后没有更新。