Javascript – Ausnahmebehandlung in Express versprechen
怪我咯
怪我咯 2017-05-16 13:25:13
0
2
443
sms_code(userInfo).then(function(data){
    return res.json(data);
})
.then(function(data){
    return res.json(data);
})
.catch(next);

Warum

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

kann mit

abgekürzt werden
.catch(next);
怪我咯
怪我咯

走同样的路,发现不同的人生

Antworte allen(2)
phpcn_u1582
catch(function(err){
    next(err)
})

等于

catch(next)

function next(err){

}

你说可以么?

阿神
setTimeout(function(){
    doSomeSth()
},1000)

setTimeout(doSomeSth,1000);

Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage