typescript 角度 - 输出事件发射器+检查是否观察到

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 角度 - 输出事件发射器+检查是否观察到相关的知识,希望对你有一定的参考价值。

// Output 'help' of type EventEmitter emits an event to the parent component (help)="myFunc()"
@Output()
help: EventEmitter<void> = new EventEmitter<void>()

helpClicked() {
  this.help.emit()
}

ngOnInit() {
  // check if the event is handled (or observed)
  this.showHelpDeskLink = this.help.observers.length > 0
}

以上是关于typescript 角度 - 输出事件发射器+检查是否观察到的主要内容,如果未能解决你的问题,请参考以下文章

typescript 角度共享事件服务

输出事件发射器仅在 ngOnInit 上触发

如何在不使用角度的ng的情况下将输入值从父组件传递给子组件?

在TypeScript中获取调用属性的名称

typescript mixin的发射器(观察者模式)实现,用TypeScript编写。

Angular2事件发射器没有得到处理