我用node js和express开发了一个应用程序。我希望在用户注销应用程序后使浏览器缓存无效。主要原因是用户在单击后退按钮时不应该看到先前加载的页面。
wi3ka0sx1#
您可以根据用户是否登录,有条件地设置头文件,使其从不缓存您的页面。这个express中间件可以做到这一点:
app.use(function(req, res, next) { if (!req.user) { res.header('Cache-Control', 'private, no-cache, no-store, must-revalidate'); res.header('Expires', '-1'); res.header('Pragma', 'no-cache'); } next(); });
字符串
0yycz8jy2#
正在使用
app.use((req, res, next) => { res.set('Cache-Control', 'no-store') next() })
字符串app.js为我工作。
app.js
jk9hmnmh3#
下面的代码在chrome中工作正常,但在Safari中不工作。
//import nocache module const nocache = require("nocache"); //create a middleware incentral place like app.js or index.js to register for all routes. that's it. app.use(nocache());
3条答案
按热度按时间wi3ka0sx1#
您可以根据用户是否登录,有条件地设置头文件,使其从不缓存您的页面。
这个express中间件可以做到这一点:
字符串
0yycz8jy2#
正在使用
字符串
app.js
为我工作。jk9hmnmh3#
下面的代码在chrome中工作正常,但在Safari中不工作。
字符串