我对Angular2 EventEmitter做错了什么?

时间:2016-08-21 19:44:05

标签: angular typescript eventemitter

我想用angular2 EventEmitter创建通用toast服务。 我创建了一个服务并发出了一些数据。我想在组件中捕获这些数据,但它不起作用:/

必须发出事件的服务是:

 import {EventEmitter, Injectable, Output} from "@angular/core";
 import {IAlert} from "../../types/interfaces/IAlerts";

@Injectable()
export class ExceptionsManagerConfig {
public getalert(): IAlert {
    return this._alert;
}

public setAlert(value: IAlert) {
    this._alert = value;
    this.alertChangeEvent.emit(value);
    console.log("set alert");
}

@Output() alertChangeEvent: EventEmitter<any> = new EventEmitter();
private _alert: IAlert;
}

这是必须捕获事件的组件:

import {Component, OnDestroy, OnInit, Input, EventEmitter} from "@angular/core";
import {ExceptionsManagerConfig} from "../../../../sheard/settings/exeptions/exeptions.menager.service.config";
import {IAlert} from "../../../../sheard/types/interfaces/IAlerts";
declare const Materialize: any;

@Component({
    providers: [ExceptionsManagerConfig],
    selector: "toast-alert",
    templateUrl: "app/elements/components/construction/toast-alert/toast-alert.html",
})
export class ToastComponent implements OnInit, OnDestroy {
    ngOnInit(): void {
        this.exceptionsManagerConfig.alertChangeEvent.subscribe(alert => this.showToast(alert));
        console.log("toast");
    }

    ngOnDestroy(): void {
    }

    showToast = (alert: IAlert) => {
        console.log(alert.message);
    };

    constructor(private exceptionsManagerConfig: ExceptionsManagerConfig) {

        this.exceptionsManagerConfig.alertChangeEvent.subscribe(alert => this.showToast(alert));
    }
}

我在主引导程序文件中设置了服务。

也许有一些提示让我如何解决我的问题?

1 个答案:

答案 0 :(得分:1)

EventEmitter 不应该在服务中使用。请改用 Observable Subject 。服务中的 @Output()毫无意义。 @Output()仅在指令和组件中受支持。

&#xA;&#xA;

您的代码应该按照您的预期进行操作。 &#xA;我假设当前的问题是你在多个地方提供了 ExceptionsManagerConfig ,导致一个组件在另一个实例上调用 ExceptionManagerConfig.setAlert() ExceptionManagerConfig 然后注入 ToastComponent

&#xA;&#xA;

您应该在处提供 ExceptionManagerConfig NgModule (如果你使用> = RC.5)或 AppComponent 来获取在任何地方注入的相同实例。

&#xA;