作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前,我有一个垂直垫步进器。它使用 *ngFor 填充步骤。
<mat-step [stepControl]="firstFormGroup" *ngFor="let stream of selectedStreamList; let indexOfelement = index;">
最佳答案
每次步进更改时,mat-stepper 都会发出 selectionChange 事件。您可以在 typescript 文件中订阅这些更改并进行相应处理……可能是这样的。
//app.component.ts
import { Component, ViewChild, AfterViewInit } from "@angular/core";
import { MatStepper } from "@angular/material/stepper";
import { StepperSelectionEvent } from "@angular/cdk/stepper";
import { pluck } from "rxjs/operators";
@Component({
selector: "app-root",
template: `
<mat-vertical-stepper #stepper>
<mat-step
*ngFor="let stream of selectedStreamList; let indexOfelement = index"
></mat-step>
</mat-vertical-stepper>
`
})
export class AppComponent implements AfterViewInit {
@ViewChild("stepper", { static: false }) private stepper: MatStepper;
selectedStreamList = [1, 2, 3, 4];
isAtStart: boolean;
isAtEnd: boolean;
constructor() {}
ngAfterViewInit() {
this.stepper.selectionChange
.pipe(pluck("selectedIndex"))
.subscribe((res: number) => {
this.isAtStart = res === 0;
this.isAtEnd = res === this.selectedStreamList.length - 1;
});
}
}
关于angular - 如何在Angular中检测mat-stepper的开始和结束?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60974938/
我是一名优秀的程序员,十分优秀!