express-session中的过期对象不是正确的类型? [英] Expiration object in express-session not the correct type?

查看:101
本文介绍了express-session中的过期对象不是正确的类型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

经常,我的nodejs应用程序-使用express v4.12.2和express-session v1.13.0模块-引发以下TypeError异常并崩溃:

Every so often, my nodejs application — which uses the express v4.12.2 and express-session v1.13.0 modules — throws the following TypeError exception and crashes:

/app/node_modules/express-session/node_modules/cookie/index.js:136
  if (opt.expires) pairs.push('Expires=' + opt.expires.toUTCString());
                                                       ^

TypeError: opt.expires.toUTCString is not a function
    at Object.serialize (/app/node_modules/express-session/node_modules/cookie/index.js:136:56)
    at setcookie (/app/node_modules/express-session/index.js:576:21)
    at ServerResponse.<anonymous> (/app/node_modules/express-session/index.js:204:7)
    at ServerResponse.writeHead (/app/node_modules/on-headers/index.js:46:16)
    at ServerResponse._implicitHeader (_http_server.js:157:8)
    at ServerResponse.res.write (/app/node_modules/compression/index.js:82:14)
    at ReadStream.ondata (_stream_readable.js:529:20)
    at emitOne (events.js:90:13)
    at ReadStream.emit (events.js:182:7)
    at readableAddChunk (_stream_readable.js:147:16)
    at ReadStream.Readable.push (_stream_readable.js:111:10)
    at onread (fs.js:1822:12)
    at FSReqWrap.wrapper [as oncomplete] (fs.js:614:17)

我不确定为什么会出错,因为toUTCString()是一个函数. (除非opt.expires不是Date对象.)

I'm not sure why this would be an error, since toUTCString() is a function. (Unless opt.expires is not a Date object.)

从测试应用程序开始,并且因为这似乎涉及到opt.expires,所以我想知道在会话超时时是否会发生这种情况.

From testing the application, and also because this seems to involve opt.expires, I am wondering if this happens when a session times out.

这是我设置会话的方式:

Here is how I am setting up sessions:

var express = require('express');
var expressSession = require('express-session');
...
var app = express();
...
app.use(expressSession({
    key: 'application.sid',
    secret: 'some.secret.string',
    cookie: {
        maxAge: 60 * 60 * 1000,
        expires: 60 * 60 * 1000
    },
    store: new mongoStore({
        mongooseConnection: mongoose.connection,
        collection: 'sessions'
    }),
    saveUninitialized: true,
    rolling: true,
    resave: true,
    secure: true
}));

我的目标是如果用户继续使用该应用程序,则延长会话过期时间.

My goal is to have a session expiration get extended if the user keeps using the application.

我如何进行设置是否有问题,或者遇到了某些错误,这些错误将通过特定版本的模块组合来解决?

Is there something wrong about how I have set this up, or have I run into some bug that would be fixed with a specific combination of versions of modules?

推荐答案

req.session.cookie.expires必须是日期,而不是数字.

req.session.cookie.expires must be a date not a number.

每个会话都有一个唯一的cookie对象.这使您可以更改每个访问者的会话Cookie:

Each session has a unique cookie object accompany it. This allows you to alter the session cookie per visitor:

var hour = 3600000;
req.session.cookie.expires = new Date(Date.now() + hour);
req.session.cookie.maxAge = hour;

这篇关于express-session中的过期对象不是正确的类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆