将特定请求的变量存储在beforeRemote('create'上,并将其用于afterRemote('create'

问题描述 投票:0回答:1

我想在beforeRemote('create'上存储特定请求的变量,并在afterRemote('create'上使用它。我知道我可以将变量存储在模型类变量上,但恐怕它会在请求中共享。

例如:

MyModel.beforeRemote('create', function(ctx, unused, next) {
   // Here i want to store a variable like:

   this.storedValue = "xxx";
}

然后在这里使用它:

MyModel.afterRemote('create', function(ctx, unused, next) {
console.log(this.storedValue);
}

我将在模型中声明的this.storedValue是静态模型还是实例模型?

loopbackjs strongloop
1个回答
0
投票

尝试一下:

© www.soinside.com 2019 - 2024. All rights reserved.