markdown Nodej上没有缓存标头

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Nodej上没有缓存标头相关的知识,希望对你有一定的参考价值。

# Set these headers on response:

```
'Cache-Control': 'private, no-cache, no-store, must-revalidate'
'Expires': '-1'
'Pragma': 'no-cache'
```
Using `ExpressJS` we can add this middleware to have no cache on *all* requests
```
// const app = express()
app.use((req, res, next) => {
    res.header('Cache-Control', 'private, no-cache, no-store, must-revalidate');
    res.header('Expires', '-1');
    res.header('Pragma', 'no-cache');
    next()
});
```

以上是关于markdown Nodej上没有缓存标头的主要内容,如果未能解决你的问题,请参考以下文章

Markdown写出高大上时序图

PHP 没有缓存HTTP标头

由于浏览器缓存,PHP 标头 301 重定向不起作用

Elastic Beanstalk:没有为 Rails 资产设置缓存控制标头(乘客独立)

在播放结果上设置 HTTP 标头(如过期) - 以及如何处理 ETag?

请求标头与响应标头