我为之前,之后和错误
创建了这样的钩子 before: {
all: [],
find: [],
get: [],
create: [],
update: [],
patch: [],
remove: []
}
然后在我的服务中使用它
const service = app.service('messages');
mongoClient.then(db => {
service.Model = db.collection('messages');
});
service.hooks(hooks);
但我想创建我的自定义钩子,比如在除了键之外的其他属性上查找并想要进行一些验证但是我无法这样做,因为每当我在钩子中进行更改它都不起作用时,我已经阅读了文档并尝试了不同的方法。谁能指导我?