跳至主要内容
版本: 22.5.0

EventEmitter.once() 方法

类似于 on,但监听器只会被触发一次,然后它将被移除。

签名:

class EventEmitter {
once<Key extends keyof EventsWithWildcard<Events>>(
type: Key,
handler: Handler<EventsWithWildcard<Events>[Key]>
): this;
}

参数

参数类型描述
type您要监听的事件
handlerHandler<EventsWithWildcard<Events>[Key]>当事件发生时要运行的处理程序函数

返回值

this

this 用于使您能够链接方法调用。