事件:'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'事件。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。