在Angular 9中使用ngFor循环和模态框的解决方法如下:
import { Component, Input, Output, EventEmitter } from '@angular/core';
@Component({
selector: 'app-modal',
template: `
`,
styles: [`
.modal {
background-color: rgba(0, 0, 0, 0.5);
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.modal-content {
background-color: #fff;
padding: 20px;
}
`]
})
export class ModalComponent {
@Input() title: string;
@Input() content: string;
@Output() close = new EventEmitter
();
closeModal() {
this.close.emit();
}
}
import { Component } from '@angular/core';
@Component({
selector: 'app-parent',
template: `
`
})
export class ParentComponent {
items = [
{ title: 'Modal 1', content: 'Content 1' },
{ title: 'Modal 2', content: 'Content 2' },
{ title: 'Modal 3', content: 'Content 3' }
];
modalOpen = false;
openModal() {
this.modalOpen = true;
}
closeModal(index: number) {
this.modalOpen = false;
}
}
通过这种方法,你可以在ngFor循环中使用模态框,并在需要时打开或关闭模态框。每个模态框都可以有自己独立的标题和内容。