node.js - koa-static出现generators will been removed in v3?
怪我咯
怪我咯 2017-04-17 15:22:30
0
2
690

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/...,求解?

怪我咯
怪我咯

走同样的路,发现不同的人生

全部回复(2)
Ty80

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

从 'koa-convert' 导入转换

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

PHPzhong

看这里!

是你仍然在用传统的 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 用起来呢!

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板