0

我在跨子域的会话中遇到问题

我像这样使用connect mongo:

app.use(session({ // req.session is populated
        secret: 'xxxxxx',
        saveUninitialized: true,
        resave: true,
        store: new MongoStore({
            db: 'nnn'
        }),
        cookie: {
            path: '/',
            maxAge: new Date(Date.now() + time),
            domain : 'mydomain.com' ,
            httpOnly: true
        }
    }));

但是,当我重定向到子域 xyz.mydomian.com 时,会话无效。任何人都可以推荐一种让跨域登录与 connect-mongo 一起使用的策略吗?

4

0 回答 0