我想用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));
}
}
我在主引导程序文件中设置了服务。
也许有一些提示让我如何解决我的问题?
答案 0 :(得分:1)
EventEmitter
不应该在服务中使用。请改用 Observable
或 Subject
。服务中的 @Output()
毫无意义。 @Output()
仅在指令和组件中受支持。
您的代码应该按照您的预期进行操作。 &#xA;我假设当前的问题是你在多个地方提供了 ExceptionsManagerConfig
,导致一个组件在另一个实例上调用
然后注入 ExceptionManagerConfig.setAlert()
ExceptionManagerConfig ToastComponent
。
您应该在处提供
(如果你使用> = RC.5)或 ExceptionManagerConfig
NgModule AppComponent
来获取在任何地方注入的相同实例。