egg.js 学习之 中间件使用

Posted 面朝阳光/

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了egg.js 学习之 中间件使用相关的知识,希望对你有一定的参考价值。

1.在框架和插件中使用中间件

编写中间件

我们先来通过编写一个简单的中间件,来看看中间件的写法。

// app/middleware/middlewareOne.js

// app/middleware/middlewareOne.js
module.exports = (options, app) => {
  return async function middlewarreone(ctx, next) {
    const url = ctx.request.url;
    await next();
    ctx.body = `获取到的ip是:${url}`;
  }
};

  

配置

// config/config.default.js
exports.middleware = [‘middlewareOne‘]; // 数组的顺序为中间件执行的顺序

请求会执行 : 获取到的ip是:/data

router 中使用中间件

以上方式配置的中间件是全局的,会处理每一次请求。 如果你只想针对单个路由生效,可以直接在 app/router.js 中实例化和挂载,如下:

‘use strict‘;

/**
 * @param {Egg.Application} app - egg application
 */
module.exports = app => {
  const {
    router,
    controller
  } = app;
  const isUrl = app.middleware.middlewarreone({params: ‘888‘,});
  router.get(‘/‘, controller.home.index);
  router.post(‘/login‘, controller.home.login);
  router.post(‘/data‘,isUrl, controller.data.index);
  router.post(‘/upload‘, controller.upload.upload);

  router.get(‘/search‘, controller.data.search);
};

  发送请求 同样会执行 结果:/data










以上是关于egg.js 学习之 中间件使用的主要内容,如果未能解决你的问题,请参考以下文章

iOS学习之代码块(Block)

大数据Spark“蘑菇云”行动代码学习之AdClickedStreamingStats模块分析

egg学习

egg.js之中间件

egg.js之中间件

Egg.js 异常处理中间件jwt,实现接口权限控制