KOA

4.1KOA 中间件实现与使用

2020-01-06  本文已影响0人  帶頭二哥

中间件实现与使用

基本使用

    // 引入 koa 模块
    const Koa = require('koa')
    // 创建 koa 应用
    const app = new Koa()

    // 定义中间件
    const logger = async (ctx,next) => {
        console.log(`${Date.now()} ${ctx.request.method} ${ctx.request.url}`);
        await next();
    }

    // 使用中间件
    app.use(logger)

    // 其实也是中间件
    app.use(async (ctx,next) => {
        ctx.body = "Hello World"
    })

    // 启动应用
    app.listen(3000)

中间件资源

上一篇下一篇

猜你喜欢

热点阅读