本文介绍了有没有办法用mongoskin列出收藏集?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经建立了数据库连接.我需要列出数据库中集合的名称.有可能吗?
I already have an established database connection. I need to list the names of the collections in the database. Is it possible?
推荐答案
从mongo shell将集合显示到数据库中:
To show collections into database from mongo shell :
db.getCollectionNames()
因此,要以蒙古皮显示收藏,请尝试
So to show collection in mongoskin try that
var collections = db.collections();
collections.each(function(err, collection) {
console.log(collection);
});
根据此链接 Mongoskin教程
这篇关于有没有办法用mongoskin列出收藏集?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!