如何使用节点js检查mongodb中是否存在集合?

时间:2019-07-05 04:02:16

标签: node.js mongodb express

我想使用节点JS检查mongodb中是否存在集合,如果不存在,则创建一个。如果集合可用,则要删除它并创建具有初始值的新集合。

1 个答案:

答案 0 :(得分:0)

您可以使用collectionNames

db.collectionNames('exampleCollection', function(err, names) {
    console.log('The collection exists: ', names.length > 0);
});

请检查document以获得详细信息。