Maison > Questions et réponses > le corps du texte
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);
phpcn_u15822017-05-16 13:27:13
catch(function(err){
next(err)
})
est égal à
catch(next)
function next(err){
}
Tu penses que ça va ?
阿神2017-05-16 13:27:13
setTimeout(function(){
doSomeSth()
},1000)
setTimeout(doSomeSth,1000);