连接会话中间件 - 重新生成与重新加载
我正在尝试掌握 Connect 的 Session 中间件,我想知道 Session.regenerate() 与 Session.reload() 之间的区别。
具体来说,我检查了文档,但没有给出有关会话重新加载实际作用的解释。同样,我也对 Session.save() 方法感到困惑。非常感谢任何帮助!
I am trying to get a hang of Connect's Session middleware, and I would like to know the difference between: Session.regenerate() vs Session.reload().
Specifically, I checked the docs, and no explanation was given about what session reload actually does. Similarly, I am also confused about Session.save() method. Any help greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
比较两个函数的源代码:
store.js
和
session.js
我将其解读为“获取会话(如果存在)或创建一个”与“销毁前一个会话”并给我一个新的”。
Comparing the source code for the 2 functions:
store.js
and
session.js
I read it as "get the session if it exists or create one" vs "destroy the previous and give me a new one".