我有一个包含属性的模型:status
和statusId
,状态可以是:
StatusId&状态如下所述:
打开
处理
靠近
拒绝
失败
我想要的是,如果我插入或更新模型的状态,那么 statusId 会自动更新。
答案 0 :(得分:2)
您可以使用两件事来实现此方案
Observe
<model>.observe('before save', function (ctx, next) {
// check the ctx and add the necessary validations
}
app.remotes().before('**', (ctx, next) => {
// do stuff with ctx.args.options
next();
});