0
在貓鼬模式中,我想檢查用戶是否保存文件。 使用everyauth我已經得到它的工作,但它將全堆棧跟蹤到控制檯引發錯誤。貓鼬檢查/保存處理授權
SpotSchema.pre('save', function (next) {
if(!everyauth.user){
// throws the errror
next(new Error('Not Logged in'));
return;
}
next();
}
有沒有辦法更好地處理這個問題?