首頁 > 軟體

Express框架兩個內建中介軟體方法詳解

2023-03-09 06:04:56

什麼是中介軟體

中介軟體,就是具有串聯執行能力的函數,Express中兩種層面的中介軟體。app 層面的中介軟體, router 層面的中甲件。在 express 中, 一般通過 use 方法和路由的方法新增中介軟體。

兩個內建的中介軟體

  • init 中介軟體方法
  • query 中介軟體方法

init 方法

exports.init = function(app){
  return function expressInit(req, res, next){
    if (app.enabled('x-powered-by')) res.setHeader('X-Powered-By', 'Express');
    req.res = res;
    res.req = req;
    req.next = next;
    setPrototypeOf(req, app.request)
    setPrototypeOf(res, app.response)
    res.locals = res.locals || Object.create(null);
    next();
  };
};

expressInit 中介軟體:

  • 設定 'X-Powered-By' 請求頭
  • req/res 物件上新增屬性
  • 繫結原型
  • 設定 local
  • 呼叫 next 方法

query 中介軟體

module.exports = function query(options) {
  var opts = merge({}, options)
  var queryparse = qs.parse;
  if (typeof options === 'function') {
    queryparse = options;
    opts = undefined;
  }
  if (opts !== undefined && opts.allowPrototypes === undefined) {
    // back-compat for qs module
    opts.allowPrototypes = true;
  }
  return function query(req, res, next){
    if (!req.query) {
      var val = parseUrl(req).query;
      req.query = queryparse(val, opts);
    }
    next();
  };
};

返回一個 query 函數,在 query 函數中使用 parseUrl 和 queryparse 處理了 url 中 query, 到此就惡意直接在 req 中使用 query 了。

exports.query = require('./middleware/query');

query 中介軟體被輸出了,可以手動呼叫。

被使用

app.lazyrouter = function lazyrouter() {
  if (!this._router) {
    this._router = new Router({
      caseSensitive: this.enabled('case sensitive routing'),
      strict: this.enabled('strict routing')
    });
    this._router.use(query(this.get('query parser fn')));
    this._router.use(middleware.init(this));
  }
};

在呼叫 lazyrouter 函數的地方,都會使用 use 函數新增中介軟體函數。每一個 app 初始化都會注入此兩個中介軟體。

小結

本文介紹了中介軟體的簡單定義,具有串聯的特性,以及 Express 中兩個內建中介軟體,一個是 exprss 初始中介軟體,一個時 express 的 query 中介軟體。內建 query 中介軟體被輸出可別外部使用,同時在 app.lazyrouter 中被初始化。

更多關於Express框架內建中介軟體的資料請關注it145.com其它相關文章!


IT145.com E-mail:sddin#qq.com