typescript优化promise接口

2018-11-14  本文已影响87人  Zszen

参考中做出了一些建议,我摘过来供参考:

// 不推荐
asyncRun().then(function(value) {}, function(error) {});
// 推荐
asyncRun().then(function(value){}).catch(function(rejected) {});
// 不推荐
asyncRun()
    .then(function(value) {}, function(error) {})
    .then(function(value) {}, function(error) {})
    .then(function(value) {}, function(error) {});

// 推荐
asyncRun()
    .then(function(value){})        
    .then(function(value){})
    .then(function(value){})
    .catch(function(rejected) {});

参考:http://www.cnblogs.com/ifantastic/p/6077707.html

上一篇下一篇

猜你喜欢

热点阅读