填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

Listener

getListeners 返回的事件监听器配置。

Event listener configuration returned from getListeners.

      
      interface Listener {
  name: string
  element: Element
  callback: (value: any) => any
  useCapture: boolean
  type: 'dom' | 'output'
}
    

属性

属性说明
name: string

事件监听器的名称。

Name of the event listener.

element: Element

监听器绑定到的元素。

Element that the listener is bound to.

callback: (value: any) => any

触发事件时调用的回调。

Callback that is invoked when the event is triggered.

useCapture: boolean

监听器是否正在使用事件捕获。

Whether the listener is using event capturing.

type: 'dom' | 'output'

监听器的类型(例如,原生 DOM 事件或自定义 @Output)。

Type of the listener (e.g. a native DOM event or a custom @Output).