欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

MongoDB命令行下格式化find()返回结果:pretty()

程序员文章站 2022-03-25 15:16:13
...

MongoDB命令行下格式化find()返回结果:pretty() db.collection.find().pretty(); www.2cto.com 补充个一劳永逸的方法,在 shell 里执行下列代码 echo DBQuery.prototype._prettyShell = true ~/. mongorc . js 这样随时随地都是 pretty()了.

MongoDB命令行下格式化find()返回结果:pretty()

db.collection.find().pretty();

www.2cto.com

补充个一劳永逸的方法,在 shell 里执行下列代码

echo

"DBQuery.prototype._prettyShell = true"

>>

~/.

mongorc

.

js

这样随时随地都是 pretty()了.