如何检查模式在猫鼬中是否存在

时间:2020-05-30 07:23:26

标签: node.js mongodb mongoose mongodb-query

我正在尝试检查架构是否已经存在,但是无法正常工作我的代码。我不知道如何检查它。 请协助寻找解决方案。

 var collectionname="Test";
    mongoose.connection.db.listCollections({name: collectionname})
        .next(function(err, collinfo) {
            if (collinfo) {
                // The collection exists
            }else {
                // The collection not exists
            }
    });

0 个答案:

没有答案