我有一个来自Firestore的数组,必须将其放入完整日历的事件中。
我想要的是这样显示
[
{
title: '',
start:''
}
]
不是这个
[{…}]
0
:
{title: "namee", start: "2018-09-19"}
1
:
{title: "namee", start: "2018-09-19"}
2
:
{title: "STI Night", start: "2018-09-18"}
length
:
3
__proto__
:
Array(0)
答案 0 :(得分:2)
您可以使用space
的第三个JSON.stringify
参数来漂亮地打印数组。请参见docs中的JSON.stringify
。
const a = [
{
title: '',
start: ''
}
];
console.log(JSON.stringify(a, null, 2));