Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Express.js 应用程序,我想记录用户的所有会话。这在实现注销功能时造成了一些麻烦。公认的做法是使用session.destroy,但我不想这样做,因为它会从数据库中删除会话。是否可以在不破坏会话的情况下使会话到期?
session.destroy
为什么不在会话中使用一些键。例如:
req.session.date = "...";