不能在重写异步方法中使用super.method()

时间:2016-10-09 10:43:16

标签: javascript async-await babeljs

我想在将请求委托给父方法之前和之后执行一些任务。 stackoverflow.com/?var="a@yahoo.com"&x="100" 实现为Parent.create函数。因此,执行以下操作会导致错误。

async

但这很有效。

async create(ctx, next) {
    await super.create(ctx, next); //'super' keyword unexpected here
}

所有Parent方法都绑定到create(ctx, next) { super.create(ctx, next); //wait for the promise, then } ,因为我在用作路由器处理程序时需要类上下文。

如何在this函数中使用super。

0 个答案:

没有答案