Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the problem of Node.js refresh session expiration

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains the "Node.js refresh session expiration problem how to solve", the article explains the content is simple and clear, easy to learn and understand, the following please follow the editor's train of thought slowly in depth, together to study and learn "Node.js refresh session expiration problem how to solve" it!

In Node.js, we usually use the express-session package to use and manage session and save the session state between the server and the client browser. So how can you refresh the expiration time of session when the user refreshes the current page or clicks the button on the page? Similar to session session state in ASP.NET, session does not expire as long as the page remains active for a certain period of time. You can do this with the following code, and we add the following middleware to the Node.js code:

/ / use this middleware to reset cookie expiration time

/ / when user hit page every time

App.use (function (req, res, next) {

Req.session._garbage = Date ()

Req.session.touch ()

Next ()

})

In this way, every time a request comes, the middleware will re-modify the expiration time of the session to achieve the desired results.

Then, add the use of session to the code:

App.use (session ({

Secret: 'test'

Resave: false

SaveUninitialized: true

Cookie: {

MaxAge: 10000060 / / default session expiration is set to 1 hour

}

Store: new MemcachedStore ({

Hosts: ['127.0.0.1pur9000']

Prefix: 'test_'

})

}))

Of course, you can also use other session storage methods, such as memoryStore,redis,mongoDB, etc., which are more or less the same.

Thank you for your reading, the above is the "Node.js refresh session expiration problem how to solve" the content, after the study of this article, I believe you on the Node.js refresh session expiration problem how to solve this problem has a deeper understanding, the specific use of the situation also needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report