假设我在同一个远程模型上为同一个远程方法定义了多个钩子:
MyModel.afterRemote('create', function (context, instance, next) {
// Do A
})
MyModel.afterRemote('create', function (context, instance, next) {
// Do B
})
MyModel.afterRemote('create', function (context, instance, next) {
// Do C
})
环回是否会按定义顺序依次执行这些操作,例如 A 会在 B 之前完成,等等?