在mongoose架构中,我想检查用户是否保存文件。 使用everyauth我已经让它工作了,但它会将完整的堆栈跟踪引入控制台。
SpotSchema.pre('save', function (next) {
if(!everyauth.user){
// throws the errror
next(new Error('Not Logged in'));
return;
}
next();
}
有没有办法更优雅地处理这个问题?