7

目前我正在尝试向我的expressjs应用程序添加错误和通知功能。我以为通过打电话

app.use(function (req, res, next) {
  res.notice = function (msg) {
    res.send([Notice] ' + msg);
  }
});

通知功能将附加到我的应用程序中存在的所有 res 对象,使我能够按如下方式使用它:

app.get('something', function (req, res) {
  res.notice('Test');
});

但是,上面的示例不起作用。有没有办法完成我想做的事情?

4

1 回答 1

12

您需要next在将notice方法添加到res.

app.use(function (req, res, next) {
  res.notice = function (msg) {
     res.send('[Notice] ' + msg);
  }
  next();
});

并且您需要在路由定义之前添加此中间件。

更新:

您需要在路由器之前添加中间件。

var express = require('express');
var app = express();

app.use(function (req, res, next) {
    res.notice = function (msg) {
        res.send('[Notice] ' + msg);
    };
    next();
});

app.use(app.router);
app.get('/', function (req, res) {
    res.notice('Test');
});

app.listen(3000);
于 2012-09-01T19:48:59.900 回答