/* res.header('Cache-Control', 'public, max-age=100') max-age=100,缓存100s 100s内浏览器不会再请求这个接口,内容不会变,除非浏览器手动清除缓存 */ index.get('/pic', (req, res) => { res.header('Cache-Control', 'public, max-age=100') res.sendFile(path.join(__dirname, '../img/img1.jpg')) }) //即使服务器端图片地址变了,这张图片也还那样,浏览器100s内不会理它 <img src='/pic' />