📌  相关文章
📜  mongodb 检查集合是否存在 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:19.401000             🧑  作者: Mango

代码示例1
db.collectionNames(collName, function(err, names) {
    console.log('Exists: ', names.length > 0);
});

// MongoDB 2.x:
db.listCollections({name: collName})
    .next(function(err, collinfo) {
        if (collinfo) {
            // The collection exists
        }
    });