gpt4 book ai didi

javascript - 在express中使用res.sendFile()时无法设置cookie

转载 作者:行者123 更新时间:2023-12-02 22:31:54 26 4
gpt4 key购买 nike

使用res.sendFile()时,响应中不会收到set-cookie header 。

app.get(sessionTracker, (req, res, next) => {
res.cookie('tracker', '123a', {
maxAge: 172800000,
httpOnly: true,
secure: true
});
return res.status(200).sendFile(path.join(ROOT_DIR, 'dist', 'index.html')).end();
});

回应

enter image description here

最佳答案

  1. @Chandan 我能够完成这项工作,你不需要 .end()

     app.get("/sessionTracker", (req, res, next) => {
    res.cookie('tracker', '123a', {
    maxAge: 172800000,
    httpOnly: true,
    secure: true
    });
    return res.status(200).sendFile(path.join(__dirname, './', 'nu.json'));
    });
  2. 还要确保“sessionTracker”变量没有混淆。

关于javascript - 在express中使用res.sendFile()时无法设置cookie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58873420/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com