console.error([data][, ...args])
添加於:v0.1.100
參數
使用換行符打印到stderr
。可以傳遞多個參數,第一個用作主要消息,所有其他參數用作類似於
的替換值(所有參數都傳遞給 printf(3)
)。util.format()
const code = 5;
console.error('error #%d', code);
// Prints: error #5, to stderr
console.error('error', code);
// Prints: error 5, to stderr
如果在第一個字符串中找不到格式化元素(例如 %d
),則在每個參數上調用
並將結果字符串值連接起來。有關詳細信息,請參閱util.inspect()
。util.format()
相關用法
- Node.js Console.timeLog([label][, ...data])用法及代碼示例
- Node.js Console.countReset([label])用法及代碼示例
- Node.js Console.trace([message][, ...args])用法及代碼示例
- Node.js Console.timeEnd([label])用法及代碼示例
- Node.js Console.assert(value[, ...message])用法及代碼示例
- Node.js Console.log([data][, ...args])用法及代碼示例
- Node.js Console.count([label])用法及代碼示例
- Node.js Console.table(tabularData[, properties])用法及代碼示例
- Node.js Console用法及代碼示例
- Node.js MySQL Count()用法及代碼示例
- Node.js CSV轉Excel用法及代碼示例
- Node.js Certificate.exportPublicKey(spkac[, encoding])用法及代碼示例
- Node.js Channel.unsubscribe(onMessage)用法及代碼示例
- Node.js MySQL CONCAT_WS()用法及代碼示例
- Node.js Channel.hasSubscribers用法及代碼示例
- Node.js Channel.publish(message)用法及代碼示例
- Node.js MySQL CHARACTER_LENGTH()用法及代碼示例
- Node.js Certificate.verifySpkac(spkac[, encoding])用法及代碼示例
- Node.js MySQL CHAR_LENGTH()用法及代碼示例
- Node.js Certificate.exportChallenge(spkac[, encoding])用法及代碼示例
- Node.js ClientHttp2Session.request(headers[, options])用法及代碼示例
- Node.js Cipher用法及代碼示例
- Node.js Channel.subscribe(onMessage)用法及代碼示例
- Node.js ServerHttp2Stream http2stream.pushStream(headers[, options], callback)用法及代碼示例
- Node.js http2.Http2ServerRequest request.url用法及代碼示例
注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 Console.error([data][, ...args])。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。