如何获得"结束" Express / Sails上的请求?

时间:2014-09-19 12:07:53

标签: node.js sails.js ejs

我想缩小视图上的HTML,所以我需要注入一个获取请求内容的函数(中间件)并解析以缩小html / ejs。

我在尝试这个:https://stackoverflow.com/questions/25667227/how-to-sailsjs-minify-html-views-with-ejs

但它已关闭,我不知道为什么,现在我在下面尝试此代码,但控制台没有显示日志,因此事件未被调用。谁知道怎么做?

module.exports = {

    http: {
        customMiddleware: function (app) {
            app.use(function(req,res, next) {
              res.on('data', function(chunk){
                console.log("INFO: "+chunk);
                response += chunk;
              });

              res.on('end', function(){
                console.log("End received!");
              });

              res.on('close', function(){
                console.log("Close received!");
              });

              next();

            });

        }
    }

};

0 个答案:

没有答案