1
我在我的一個應用程序中使用了請求模塊。我正在嘗試重寫請求響應中的請求會話maxAge值。但是,它不起作用。如何讓被請求響應中定義/要求內請求未被定義?
function testFunction (req, res) {
req.session.cookie.maxAge = 10000; // working
request(option, function(err, response, body, req) {
req.session.cookie.maxAge = body.maxAge; // session is undefined
})
}
module.exports = {
testFunction: testFunction
}
嗨,會話現在定義,但不幸的是,新的會話值沒有被設置爲mongodb。如果'req.session.cookie.maxAge'不在請求範圍內,它會工作 – stackdisplay