当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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])。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。