Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Mongoスクリプトでオブジェクトをコンソールに出力するにはどうすればよいですか?
私は試した:
> print({}) [object Object]
表示するだけ[object Object]です。の代替はどれconsole.dir()ですか?
[object Object]
console.dir()
内容を確認するだけの場合は、通常は を使用しますJSON.stringify()。
JSON.stringify()
> print ( JSON.stringify( { "foo": { "bar": "spam" } } ) )