EventEmitter.once() 方法
类似于 on
,但监听器只会被触发一次,然后它将被移除。
签名:
class EventEmitter {
once<Key extends keyof EventsWithWildcard<Events>>(
type: Key,
handler: Handler<EventsWithWildcard<Events>[Key]>
): this;
}
参数
参数 | 类型 | 描述 |
---|---|---|
type | 键 | 您要监听的事件 |
handler | Handler<EventsWithWildcard<Events>[Key]> | 当事件发生时要运行的处理程序函数 |
返回值
this
this
用于使您能够链接方法调用。