“Dostęp do danych sesji z widoku EJS” Kod odpowiedzi

Dostęp do danych sesji z widoku EJS

app.use(function(req, res, next) {
  res.locals.user = req.session.user;
  next();
});

/*


You can use res.locals to expose particular data to all templates.

In your situation, you could add the following middleware to Express:


This will make a user variable available in all your templates.

You do need to make sure that you add that middleware after req.session has been set (which is usually after express-session has been added to the middleware chain).
*/
DevPedrada

Dostęp do danych sesji z widoku EJS


app.use(function(req, res, next) {
  res.locals.user = req.session.user;
  next();
});

Distinct Donkey

Odpowiedzi podobne do “Dostęp do danych sesji z widoku EJS”

Pytania podobne do “Dostęp do danych sesji z widoku EJS”

Więcej pokrewnych odpowiedzi na “Dostęp do danych sesji z widoku EJS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu