警告node
(node:8500) UnhandledPromiseRejectionWarning: undefined (node:8500) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) (node:8500) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with
報錯代碼數據庫
//數據庫中是否已經存在同名分類名稱 Category.findOne({ name: name }).then(function (rs) { if (rs) { //數據庫中已經存在該分類 res.render('admin/error',{ userInfo: req.userInfo, message: '分類已經存在' }); return Promise.reject(); } else { //數據庫中不存在該分類,能夠保存 return new Category({ name: name }).save(); } }).then(function (newCategory) { res.render('admin/success',{ userInfo: req.userInfo, message: '分類保存成功', url: '/admin/category' }); })
報錯緣由:由於Promise的reject沒有被處理。promise
若是無論異常內容,直接丟棄異常,能夠這樣處理:.catch(()=>{});async
修改後代碼ide
//數據庫中是否已經存在同名分類名稱
Category.findOne({
name: name
}).then(function (rs) { if (rs) { //數據庫中已經存在該分類 res.render('admin/error',{ userInfo: req.userInfo, message: '分類已經存在' }); return Promise.reject(); } else { //數據庫中不存在該分類,能夠保存 return new Category({ name: name }).save(); } }).then(function (newCategory) { res.render('admin/success',{ userInfo: req.userInfo, message: '分類保存成功', url: '/admin/category' }); }).catch(()=>{});