當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js Console.table(tabularData[, properties])用法及代碼示例


console.table(tabularData[, properties])

添加於:v10.0.0

參數

嘗試使用 tabularData 的屬性列(或使用 properties )和 tabularData 的行構建一個表並記錄它。如果不能將其解析為表格,則回退到僅記錄參數。

// These can't be parsed as tabular data
console.table(Symbol());
// Symbol()

console.table(undefined);
// undefined

console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }]);
// ┌─────────┬─────┬─────┐
// │ (index) │  a  │  b  │
// ├─────────┼─────┼─────┤
// │    0    │  1  │ 'Y' │
// │    1    │ 'Z' │  2  │
// └─────────┴─────┴─────┘

console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }], ['a']);
// ┌─────────┬─────┐
// │ (index) │  a  │
// ├─────────┼─────┤
// │    0    │  1  │
// │    1    │ 'Z' │
// └─────────┴─────┘

相關用法


注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 Console.table(tabularData[, properties])。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。