获取快速中间件中的状态代码

时间:2016-12-07 05:13:18

标签: node.js express

我试图将一些请求缓存到静态文件中,这些文件可以由中间件直接由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.statusres.get('status')的API,可用于获取当前请求的状态代码。

任何其他解决方案?

2 个答案:

答案 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 获取状态。