在mongo脚本中打印对象

时间:2013-09-18 15:09:16

标签: node.js mongodb

如何打印以控制Mongo脚本中的对象?

我试过了:

> print({})
[object Object]

它只显示[object Object]。哪个是console.dir()的替代方案?

2 个答案:

答案 0 :(得分:39)

您可以使用printjson

> printjson({})
{ }

> printjson({a: 'foo', b: 'bar'})
{ "a" : "foo", "b" : "bar" }

答案 1 :(得分:3)

如果我想做的就是查看内容,我通常只会使用JSON.stringify()

> print ( JSON.stringify( { "foo": { "bar": "spam" } } ) )