事件:'reset'
添加于:v0.11.0
'reset'
事件在 REPL 的上下文被重置时发出。只要接收到 .clear
命令作为输入,就会发生这种情况,除非 REPL 使用默认评估器并且 repl.REPLServer
实例是在 useGlobal
选项设置为 true
的情况下创建的。侦听器回调将通过引用context
对象作为唯一参数来调用。
这可以主要用于将 REPL 上下文重新初始化为一些预定义的状态:
const repl = require('node:repl');
function initializeContext(context) {
context.m = 'test';
}
const r = repl.start({ prompt: '> ' });
initializeContext(r.context);
r.on('reset', initializeContext);
执行此代码时,可以修改全局 'm'
变量,然后使用 .clear
命令将其重置为其初始值:
$ ./node example.js
> m
'test'
> m = 1
1
> m
1
> .clear
Clearing context...
> m
'test'
>
相关用法
- Node.js tls.Server 'resumeSession'事件用法及代码示例
- Node.js ClientHttp2Stream 'response'事件用法及代码示例
- Node.js InterfaceConstructor 'resume'事件用法及代码示例
- Node.js tty.WriteStream 'resize'事件用法及代码示例
- Node.js Http2Session 'remoteSettings'事件用法及代码示例
- Node.js stream.Readable 'readable'事件用法及代码示例
- Node.js proces 'rejectionHandled'事件用法及代码示例
- Node.js tls.Server 'keylog'事件用法及代码示例
- Node.js http.Server 'clientError'事件用法及代码示例
- Node.js cluste 'disconnect'事件用法及代码示例
- Node.js proces 'exit'事件用法及代码示例
- Node.js stream.Writable 'pipe'事件用法及代码示例
- Node.js stream.Readable 'end'事件用法及代码示例
- Node.js cluste 'fork'事件用法及代码示例
- Node.js stream.Writable 'unpipe'事件用法及代码示例
- Node.js Worker 'listening'事件用法及代码示例
- Node.js InterfaceConstructor 'pause'事件用法及代码示例
- Node.js fs.FSWatcher 'change'事件用法及代码示例
- Node.js stream.Readable 'data'事件用法及代码示例
- Node.js http.ClientRequest 'connect'事件用法及代码示例
- Node.js proces 'uncaughtException'事件用法及代码示例
- Node.js Http2Session 'localSettings'事件用法及代码示例
- Node.js REPLServer 'exit'事件用法及代码示例
- Node.js cluste 'online'事件用法及代码示例
- Node.js tls.TLSSocket 'session'事件用法及代码示例
注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 'reset'事件。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。