Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

node js的终端中,如何让 console.log 尽可能地完全展开

举个例子:

[ Corporation {
    id: 1,
    name: 'xxxxasdad公司',
    state: 0,
    created_at: 2017-03-01T06:48:55.000Z,
    updated_at: 2017-03-01T06:48:55.000Z,
    users: **[ [Object] ]**,
    tax_subjects: **[ [Object] ] } ]**

代码中的 users, tax_subjects 字段总是不能显示完全。如何让其能够完全展开?(就像xml结构一样)

当然,这个锅是不是由终端导致的,我想。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
console.log(JSON.stringify(obj));

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...