如何编写中间件来记录url或body参数

时间:2014-08-28 00:27:56

标签: node.js express

我正在尝试实现一个接受任何传入请求并记录所有请求参数的中间件,那么我该如何使用express呢?

我试过这段代码,但没有用,

//logger function
app.use(function(req, res, next){
  console.log('%s %s', req.method, req.url);
  next();
});

感谢。

1 个答案:

答案 0 :(得分:0)

正如评论所提到的:see the document

我想警告你另一件事:

不要在日志文件中写入用户的帐户信息(例如:电子邮件,密码),这很危险!