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