我想在将请求委托给父方法之前和之后执行一些任务。 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。