搜索

首页  >  问答  >  正文

javascript - express 中 promise 处理异常

sms_code(userInfo).then(function(data){
    return res.json(data);
})
.then(function(data){
    return res.json(data);
})
.catch(next);

为什么

catch(function(err){
    next(err)
})

可以缩写成

.catch(next);
怪我咯怪我咯2752 天前421

全部回复(2)我来回复

  • phpcn_u1582

    phpcn_u15822017-05-16 13:27:13

    catch(function(err){
        next(err)
    })
    

    等于

    catch(next)
    
    function next(err){
    
    }

    你说可以么?

    回复
    0
  • 阿神

    阿神2017-05-16 13:27:13

    雷雷

    回复
    0
  • 取消回复