有没有一种方法可以在没有换行符的情况下打印到控制台?控制台对象文档没有说明这方面的任何内容:
console.log()打印到带有换行符的标准输出。此函数可以以类似printf()的方式接受多个参数。例子:console.log('计数:%d',计数);如果在第一个字符串中找不到格式化元素,则在每个参数上使用util.inspect。
有没有一种方法可以在没有换行符的情况下打印到控制台?控制台对象文档没有说明这方面的任何内容:
console.log()打印到带有换行符的标准输出。此函数可以以类似printf()的方式接受多个参数。例子:console.log('计数:%d',计数);如果在第一个字符串中找不到格式化元素,则在每个参数上使用util.inspect。
当前回答
这些解决方案都不适用于我,process.stdout.write('ok\033[0G'),只需使用'\r'即可创建新行,但不会在Mac OSX 10.9.2上覆盖。
编辑:我不得不用它来替换当前行:
process.stdout.write('\033[0G');
process.stdout.write('newstuff');
其他回答
我在使用严格模式时遇到以下错误:
节点错误:“严格模式下不允许使用八进制文字。”
以下解决方案有效(来源):
process.stdout.write("received: " + bytesReceived + "\x1B[0G");
在Windows控制台(也是Linux)中,您应该将“\r”替换为其等效代码\033[0G:
process.stdout.write('ok\033[0G');
这使用VT220终端转义序列将光标发送到第一列。
似乎有很多答案表明:
process.stdout.write
错误日志应在以下时间发出:
process.stderr
而是使用:
console.error
对于任何想知道为什么process.stdout.write('\033[0G');没有做任何事情的人来说,这是因为stdout是缓冲的,您需要等待drain事件(更多信息)。
如果write返回false,它将触发一个drain事件。
也可以使用util.print。阅读:http://nodejs.org/api/util.html#util_util_print
util.print([…])#一种同步输出功能。将阻塞进程,将每个参数转换为字符串,然后输出到stdout。不在每个参数后放置换行符。
例如:
// 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");
});
此外,如果要覆盖同一行中的消息,例如倒计时,可以在字符串末尾添加\r。
process.stdout.write("Downloading " + data.length + " bytes\r");