index. js
var store = new MongoDBStore({
uri:
"mongodb+srv://...........................?retryWrites=true&w=majority",
collection: "........."
});
app.use(cookieParser());
app.use(
session({
secret: "keyboard cat",
resave: false,
saveUninitialized: false,
cookie: {
maxAge: 3600000
},
store: store
})
);
account.ts
exports.postLogin = (req, res, next) => {
const email = req.body.email;
const password = req.body.password;
if (email == "email@gmail.com" && password == "1234") {
console.log("work is true");
req.session.isAuthenticated = "true";
}
};
Проблема: Сообщение успешно добавлено. Но сессия не работает. Там нет сообщения об ошибке. Как я могу решить эту проблему?