我试图将一些请求缓存到静态文件中,这些文件可以由中间件直接由nginx提供。
核心代码:
function PageCache(config) {
config = config || {};
root = config.path || os.tmpdir() + "/_viewcache__";
return function (req, res, next) {
var key = req.originalUrl || req.url;
var shouldCache = key.indexOf("search") < 0;
if (shouldCache) {
var extension = path.extname(key).substring(1);
if (extension) {
} else {
if (key.match(/\/$/)) {
key = key + "index.html"
} else {
key = key + ".html";
}
}
var cacheFilePath = path.resolve(root + key)
try {
res.sendResponse = res.send;
res.send = function (body) {
res.sendResponse(body);
// cache file only if response status code is 200
cacheFile(cacheFilePath, body);
}
}
catch (e) {
console.error(e);
}
}
next()
}
}
但是我发现无论状态代码如何都会缓存所有响应,而不应缓存代码为404,410,500或其他内容的响应。
但我找不到任何类似res.status
或res.get('status')
的API,可用于获取当前请求的状态代码。
任何其他解决方案?
答案 0 :(得分:13)
您可以覆盖响应结束时正在调用的res.end
事件。每当响应结束时,您都可以获得statusCode
响应。
希望它可以帮到你
var end = res.end;
res.end = function(chunk, encoding) {
if(res.statusCode == 200){
// cache file only if response status code is 200
cacheFile(cacheFilePath, body);
}
res.end = end;
res.end(chunk, encoding);
};
答案 1 :(得分:0)
您可以使用 res.statusCode 获取状态。