搜索

首页  >  问答  >  正文

koa-static出现generators will been removed in v3?

koa deprecated Support for generators will been removed in v3. See the documentation for examples of how to convert old middleware https://github.com/koajs/koa/tree/v2.x#old-signature-middleware-v1x---deprecated,求解?

高洛峰高洛峰2935 天前2389

全部回复(2)我来回复

  • 欧阳克

    欧阳克2016-11-10 11:06:05

    是你仍然在用传统的 1.x 里的生成器语法才会出现这条提示,是 koa 善意的提醒啦,避免以后升到 v3 你的代码就瘫痪了!所以如果你仍然继续想使用生成器语法的话就借助 co 模块吧!

    官方的栗子:

    app.use(co.wrap(function *(ctx, next) {  const start = new Date();  
    yield next();  
    const ms = new Date() - start; 
    console.log(`${ctx.method} ${ctx.url} - ${ms}ms`);
    }));

    PS:既然你都用 v2 了,为啥不 async / await 用起来呢!


    回复
    0
  • 三叔

    三叔2016-11-10 11:05:35

    找到方法了 npm install koa-convert --save

    import convert from 'koa-convert'

    app.use(convert(require('koa-static')(__dirname + '/public')));


    回复
    0
  • 取消回复