要实现Angular Material的MatDialog.open(Component)自动选择Component的第一个链接,可以按照以下方法进行操作:
import { Component } from '@angular/core';
@Component({
selector: 'app-dialog-component',
template: `
Links:
-
{{ link }}
`,
styles: [`
.selected {
font-weight: bold;
}
`]
})
export class DialogComponent {
links = ['Link 1', 'Link 2', 'Link 3'];
selectedLink: string;
selectLink(link: string) {
this.selectedLink = link;
}
}
import { Component } from '@angular/core';
import { MatDialog } from '@angular/material/dialog';
import { DialogComponent } from './dialog.component';
@Component({
selector: 'app-parent-component',
template: `
`
})
export class ParentComponent {
constructor(private dialog: MatDialog) {}
openDialog() {
const dialogRef = this.dialog.open(DialogComponent);
}
}
import { Component, OnInit } from '@angular/core';
import { MatDialogRef } from '@angular/material/dialog';
@Component({
selector: 'app-dialog-component',
template: `
Links:
-
{{ link }}
`,
styles: [`
.selected {
font-weight: bold;
}
`]
})
export class DialogComponent implements OnInit {
links = ['Link 1', 'Link 2', 'Link 3'];
selectedLink: string;
constructor(private dialogRef: MatDialogRef) {}
ngOnInit() {
this.selectedLink = this.links[0];
}
selectLink(link: string) {
this.selectedLink = link;
}
}
现在,当你打开对话框时,它应该会自动选择第一个链接。你可以通过选择不同的链接来更改当前选择的链接。