Acc. to this每次重新加载时引入?<version>
号码的最佳方式。在Node.js中使用Jade渲染文件时如何做到这一点?
还有css文件呢?
答案 0 :(得分:1)
想通了,我可以增加时间
app.configure(function() {
//...
app.use(setlocalTime);
//...
app.use(app.router);
});
function setlocalTime(req, res, next) {
app.locals.time = Date.now();
next();
}
script(src='/scripts/script.js?'+time)