我通过 mongoosejs 使用 Mongodb。例如:我想检查我的数据库是否有一个集合Users
。那么有什么功能吗?之类的Users.exits()
。
在 mongo-native 中有这个功能:
db.collectionNames("Users", function(err, items) {} //return the Users collection if it exits
谢谢!
我通过 mongoosejs 使用 Mongodb。例如:我想检查我的数据库是否有一个集合Users
。那么有什么功能吗?之类的Users.exits()
。
在 mongo-native 中有这个功能:
db.collectionNames("Users", function(err, items) {} //return the Users collection if it exits
谢谢!