node搭建个人博客promise警告解除

警告

(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没有被处理。

如果不管异常内容,直接丢弃异常,可以这样处理:.catch(()=>{});

修改后代码

//数据库中是否已经存在同名分类名称
    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(()=>{});

转载于:https://www.cnblogs.com/kinblog/p/10971166.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值