gpt4 book ai didi

angular - 从引导模式到父级的事件发射器

转载 作者:太空狗 更新时间:2023-10-29 17:22:20 26 4
gpt4 key购买 nike

我想将模态事件从模态组件传递到模态的父组件,但出于某种原因,我似乎无法让 EventEmitter 工作。如果有人有想法,将不胜感激。主要代码如下,从 ng-bootstrap 演示派生的(非工作)plunk 在这里:http://plnkr.co/edit/xZhsqBV2mQaPxqFkoE7C?p=preview

应用.ts

@Component({
selector: 'my-app',
template: `
<div class="container-fluid" (notifyParent)="getNotification($event)">
<template ngbModalContainer></template>
<ngbd-modal-component ></ngbd-modal-component>
</div>
`
})
export class App {
getNotification(evt) {
console.log('Message received...');
}
}

模态组件.ts

import {Component, Input, Output, EventEmitter} from '@angular/core';

import {NgbModal, NgbActiveModal} from '@ng-bootstrap/ng-bootstrap';

@Component({
selector: 'ngbd-modal-content',
template: `
<div class="modal-body">
<p>Hello, {{name}}!</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" (click)="activeModal.close('Close click')">Close</button>
<button type="button" class="btn btn-secondary" (click)="notify()">Notify</button>
</div>
`
})
export class NgbdModalContent {
@Input() name;
@Output() notifyParent: EventEmitter<any> = new EventEmitter();
constructor(public activeModal: NgbActiveModal) {}

notify(){
console.log('Notify clicked...');
this.notifyParent.emit('Here is an Emit from the Child...');
}
}

@Component({
selector: 'ngbd-modal-component',
templateUrl: 'src/modal-component.html'
})
export class NgbdModalComponent {
constructor(private modalService: NgbModal) {}

open() {
const modalRef = this.modalService.open(NgbdModalContent);
modalRef.componentInstance.name = 'World';
}
}

最佳答案

更新后的答案:

我终于找到了解决您问题的方法。我不确定您是否仔细研究了为 modal component 给出的所有示例在 ng-bootstrap 网站上。

您需要使用内容组件中的 activeModal.close() 方法返回结果。该值将在 Modal Component 中获取,然后您可以用它做任何您想做的事情。我创建了一个 working Plunker这基本上是官方 plunk 的分支,它就像魅力一样。

旧答案:

我认为您将事件处理代码放在了错误的位置,这就是您收不到事件通知的原因。

下面是 app.ts 上的工作模板

  template: `
<div class="container-fluid">
<template ngbModalContainer></template>
<ngbd-modal-component (notifyParent)="getNotification($event)"></ngbd-modal-component>
</div>
`

同时修改modal-component.ts中Notify函数的代码为

  notify(){
console.log('Notify clicked...');
this.notifyParent.emit('Here is an Emit from the Child...');
this.activeModal.close('Notify click');
}

我已经 fork 并修改了你的 plunk 以使其工作 here

关于angular - 从引导模式到父级的事件发射器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42681556/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com