有没有一种在没有尾随换行符的情况下打印到控制台的方法? console
对象 documentation 没有说明任何相关内容:
console.log() 使用换行符打印到标准输出。此函数可以以类似 printf() 的方式接受多个参数。示例:console.log('count: %d', count);如果在第一个字符串中未找到格式化元素,则在每个参数上使用 util.inspect。
此外,如果您想覆盖同一行中的消息,例如在倒计时中,您可以在字符串末尾添加 \r
。
process.stdout.write("Downloading " + data.length + " bytes\r");
process.stdout.write("Downloading " + data.length + " bytes\033[0G");
\033
替换为十六进制文字 \x1b
,如下所示:\x1b[0G
。 (适用于严格和非严格代码)
作为对@rodowi 上面关于能够覆盖一行的出色补充的扩展/增强:
process.stdout.write("Downloading " + data.length + " bytes\r");
如果您不希望终端光标位于第一个字符上,正如我在代码中看到的那样,请考虑执行以下操作:
let dots = ''
process.stdout.write(`Loading `)
let tmrID = setInterval(() => {
dots += '.'
process.stdout.write(`\rLoading ${dots}`)
}, 1000)
setTimeout(() => {
clearInterval(tmrID)
console.log(`\rLoaded in [3500 ms]`)
}, 3500)
通过将 \r
放在下一个打印语句的前面,光标在替换字符串覆盖前一个之前被重置。
在 Windows 控制台(Linux 也是如此)中,您应该将 '\r'
替换为其等效代码 \033[0G
:
process.stdout.write('ok\033[0G');
这使用 VT220 终端转义序列将光标发送到第一列。
[\] 39
一样,并且光标在第一个字符上突出显示:var spinner = '|/-\\'.split('');process.stdout.write("["+this.randomElement(spinner)+"] "+message+"\033[0G");
man console_codes
(在 Linux 上或在线)中找到基本介绍,我最喜欢的参考是 www2.phys.canterbury.ac.nz/dept/docs/manuals/unix/DEC_4.0e_Docs/…(其 99% 的内容仍然有效)。唯一需要注意的是:在广泛部署之前,请准备好在几个不同的终端上测试任何实验。
似乎有很多答案表明:
process.stdout.write
错误日志应在以下位置发出:
process.stderr
而是使用:
console.error
如果有人想知道为什么 process.stdout.write('\033[0G');
没有做任何事情,那是因为 stdout
已缓冲,您需要等待 drain
事件 (more info)。
如果 write 返回 false
,它将触发 drain
事件。
util.print 也可以使用。阅读:http://nodejs.org/api/util.html#util_util_print
util.print([...])# 一个同步输出函数。将阻止该过程,将每个参数转换为字符串,然后输出到标准输出。不在每个参数后放置换行符。
一个例子:
// get total length
var len = parseInt(response.headers['content-length'], 10);
var cur = 0;
// handle the response
response.on('data', function(chunk) {
cur += chunk.length;
util.print("Downloading " + (100.0 * cur / len).toFixed(2) + "% " + cur + " bytes\r");
});
util.print
现已弃用
(node:7616) DeprecationWarning: util.print is deprecated. Use console.log instead.
TypeError: util.print is not a function
这些解决方案都不适合我,process.stdout.write('ok\033[0G')
并且仅使用 '\r'
只是创建一个新行,但不要在 Mac OSX 10.9.2 上覆盖。
编辑:我不得不用它来替换当前行:
process.stdout.write('\033[0G');
process.stdout.write('newstuff');
使用严格模式时出现以下错误:
节点错误:“严格模式下不允许使用八进制文字。”
以下解决方案有效 (source):
process.stdout.write("received: " + bytesReceived + "\x1B[0G");
如果您希望它在 Linux 和 Windows、严格模式和非严格模式下都工作,并且每次打印时都完全清除该行,您可以使用
const str = 'Hi there'
process.stdout.write(str.padEnd(50) + '\x1b[0G')
console.log
正在打印\n
。` followed by an
n`。hello: true