5

我想在 node.js 的响应和请求中添加新方法。

我怎样才能更有效地做到这一点?

我不明白这是如何在 express.js 中完成的

4

2 回答 2

8

作为 JavaScript,有很多方法可以做到这一点。对我来说 express 最合理的模式是将函数添加到早期中间件中的每个请求实例:

//just an example
function getBrowser() {
    return this.get('User-Agent'); 
}

app.use(function (req, res, next) {
  req.getBrowser = getBrowser;
  next();
});

app.get('/', function (req, res) {
    //you can call req.getBrowser() here
});

在 express.js 中,这是通过向 http.IncomingMessage 的原型添加附加功能来完成的。

https://github.com/visionmedia/express/blob/5638a4fc624510ad0be27ca2c2a02fcf89c1d334/lib/request.js#L18

这有时被称为“猴子补丁”或“自由补丁”。对于这件事是好是坏,众说纷纭。我上面的方法更谨慎,不太可能对你的 node.js 进程中运行的其他代码造成有意的干扰。添加您自己的:

var http = require('http');
http.IncomingMessage.prototype.getBrowser = getBrowser; //your custom method
于 2013-09-15T19:50:32.640 回答
0

向 express.response 对象添加方法:

const express = require('express');
express.response.getName = () => { return 'Alice' };
于 2019-01-02T17:11:02.060 回答