recherche

Maison  >  Questions et réponses  >  le corps du texte

javascript - promesse de gestion des exceptions dans Express

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

Pourquoi

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

peut être abrégé en

.catch(next);
怪我咯怪我咯2752 Il y a quelques jours420

répondre à tous(2)je répondrai

  • phpcn_u1582

    phpcn_u15822017-05-16 13:27:13

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

    est égal à

    catch(next)
    
    function next(err){
    
    }

    Tu penses que ça va ?

    répondre
    0
  • 阿神

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

    setTimeout(function(){
        doSomeSth()
    },1000)
    
    setTimeout(doSomeSth,1000);
    
    

    répondre
    0
  • Annulerrépondre