搜尋

首頁  >  問答  >  主體

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);
怪我咯怪我咯2783 天前448

全部回覆(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
  • 取消回覆