sms_code(userInfo).then(function(data){ return res.json(data); }) .then(function(data){ return res.json(data); }) .catch(next);
Kenapa
catch(function(err){ next(err) })
boleh diringkaskan kepada
.catch(next);
走同样的路,发现不同的人生
sama dengan
catch(next) function next(err){ }
Adakah anda fikir ia okey?
setTimeout(function(){ doSomeSth() },1000) setTimeout(doSomeSth,1000);
sama dengan
Adakah anda fikir ia okey?