我想在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是静态模型还是实例模型?
尝试一下: