当前位置:  开发笔记 > 编程语言 > 正文

Passport.js和MongoStore错误"在MongoStore找不到连接策略"

如何解决《Passport.js和MongoStore错误"在MongoStore找不到连接策略"》经验,为你挑选了1个好方法。

我在Node.js服务器上收到这个奇怪的错误:

 Error: Connection strategy not found
        at MongoStore (/Users/amills001c/WebstormProjects/lectal_all/manager/node_modules/connect-mongo/src/index.js:100:23)
        at Object. (/Users/amills001c/WebstormProjects/lectal_all/manager/app.js:42:12)
        at Module._compile (module.js:425:26)

我们正在使用Passport和Express.

错误发生在mongoose_connection: mongoose.connection以下代码段中的行:

app.use(expressSession({
    secret: 'foobar',
    cookie: {
        secure: false,
        maxage: 1160000000,
        resave: true,
        saveUninitialized: true
    },
    store: new MongoStore({
        mongoose_connection: mongoose.connection   /*<== error happens here*/
    })
}));

这是什么错误,我该如何解决?



1> Aᴍɪʀ..:

根据文档,我认为该行应该是:

store: new MongoStore({
    mongooseConnection: mongoose.connection
});

mongooseConnection而不是mongoose_connection.

推荐阅读
手机用户2502852037
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有