当我尝试user._id
在前钩子中分配给实体时,我变得不确定。
钩子
module.exports = (options = {}) => {
return async context => {
const user = context.params.user;
context.data = {
...
userId: user._id,
...
};
return context;
};
};
这是我的钩子寄存器
before: {
...
create: [processProperty(), authenticate('jwt')],
...
}
}