使用 db.collection.find() 返回數據,每一條占一整行,一點格式都沒有,好難閱讀,不知道有沒有方法格式化返回的值,比如每個key-value占一行這種的
db.collection.find()
闭关修行中......
db.collection.find().pretty();
補充一勞永逸的方法,在 shell 裡執行下列程式碼
echo "DBQuery.prototype._prettyShell = true" >> ~/.mongorc.js
這樣隨時隨地都是 pretty() 了
樓上的方法好
db.collection.find().pretty();
補充一勞永逸的方法,在 shell 裡執行下列程式碼
這樣隨時隨地都是 pretty() 了
樓上的方法好