Session-only cookies,on the other
hand,stores information in the
browser memory,and is available for
the duration of the browser session.
In other words,the data stored inside
a session cookie is available from the
time of storage until the browser is
closed. Moving from page to page
during this time does not erase the
data.
如何使用Express.js?
解决方法
现在就问题了。
实际上是什么?
>数据存储在服务器端。
>发出一个包含ID的cookie。
>由于浏览器发送cookies的事实,每个请求都会将该ID发送回服务器。
>现在,服务器可以将Cookie中的ID(通常称为会话ID或短SID)与服务器上存储的会话数据重新关联。
Express.js has support for sessions built in。
示例显示:
>设置Express.js中间件
>使用第三方存储来保存会话数据,在这种情况下为Redis(哪个IMO对于您的问题atm而言是过度的)
安装Redis需要相当的工作,但也可以使用Express.js的内置内存存储:
var express = require('express'); var app = express.createServer(); var MemoryStore = require('connect/middleware/session/memory'); app.use(express.bodyDecoder()); app.use(express.cookieDecoder()); app.use(express.session({ store: new MemoryStore({ reapInterval: 60000 * 10 }) })); app.get('/',function(req,res){ req.session.visitCount = req.session.visitCount ? req.session.visitCount + 1 : 1; res.send('You have visited this page ' + req.session.visitCount + ' times'); }); app.listen(4000);
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。