Express会话不保存/查找会话

时间:2019-12-13 17:51:08

标签: node.js express session express-session

我正在使用express-session尝试使用该会话,但似乎找不到或保存该会话。

我希望每次调用后响应都会增加,但是在Postman或基本的瘦应用程序反复请求的情况下,它始终返回0。

如何获取已保存的会话并返回递增值?

Node.js:

const express = require('express')
const app = express()
const session = require('express-session');

app.use(function(req, res, next) {
  res.header("Access-Control-Allow-Origin", "http://localhost:5000"); // update to match the domain you will make the request from
  res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
  next();
});

app.use(session({
    genid: function(req) {
        return 1
    },
    proxy: true,
    secret: "max",
    resave: false,
    saveUninitialized: true
}));

app.get('/', function (req, res) {
    console.log(req.session)
    if (!req.session.views) {
        req.session.views=0;
    }
    res.send((req.session.views++).toString());
    console.log(req.session)
})

app.listen(3000)

基本苗条

<script>
    export let name;
    let resp = "";
    async function sendReq() {
        resp = await fetch("http://localhost:3000/");
        console.log(resp);
        resp = await resp.text();
        console.log(resp);
    }
</script>

<main>
    <h1>Hello {name}!</h1>
    <p>Visit the <a href="https://svelte.dev/tutorial">Svelte tutorial</a> to learn how to build Svelte apps.</p>
    <button on:click={sendReq}>Click me</button>
    {resp}
</main>

<style>
    main {
        text-align: center;
        padding: 1em;
        max-width: 240px;
        margin: 0 auto;
    }

    h1 {
        color: #ff3e00;
        text-transform: uppercase;
        font-size: 4em;
        font-weight: 100;
    }

    @media (min-width: 640px) {
        main {
            max-width: none;
        }
    }
</style>

1 个答案:

答案 0 :(得分:0)

fetch()默认不发送带有其请求的cookie。因此,如果没有Cookie,则您的服务器不会看到会话Cookie,因此不会找到您之前的会话对象。您需要添加credentials: "include"credentials: "same-origin"选项:

resp = await fetch("http://localhost:3000/", {credentials: "include"});

更改会话对象后,您可能还需要调用session.save(),以便您的更改将继续。

关于您的代码的其他注释:

  1. 对于大多数后面有真实数据存储的会话,在修改会话对象以确保将其保存回数据存储后,需要调用session.save()。对于默认的基于内存的存储,您可能不需要它,但这是一个很好的通用做法,因为生产代码可能会在某个时候从基于内存的存储中移走。

  2. 您对genid()进行硬编码以始终返回1会破坏会话中的许多功能。不要那样做genid()的默认实现可以很好地满足您的目的,因此您可以完全删除该方法定义。

  3. 您不会显示用于从服务器加载网页的代码。如果您不是从Web服务器上获取网页本身,那么fetch()调用是一个同源调用,那么您可能还会遇到问题(跨源限制)。

  4. 在客户端代码中,应将变量resp的定义移至sendReq()函数中,以使其成为局部变量,并且如果多次调用{ {1}}曾经在同一页面上飞行。