猿问

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);


RISEBY
浏览 515回答 1
1回答

叮当猫咪

catch(function(err){     next(err) })等于catch(next)function next(err){ }你说可以么?
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答