码迷,mamicode.com
首页 > 其他好文 > 详细

promise捕获错误

时间:2014-09-18 14:40:34      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   div   sp   cti   log   on   c   

function fn(){
            var a = $.Deferred();
            a.reject(‘hahaha精神工疾‘);
            return a.promise();
        }

        fn().then(function() {
            console.log(‘success 1‘);
        },function (msg) {
            console.log(msg);
        }).then(function() {
            console.log(‘success 2‘);
        },function (msg) {
            console.log(msg);
        });
//‘hahaha精神工疾’
//underfined

then的错误执行会传递,但错误信息不传递

then支持延续任务调用方式(Continuation tasks),而done不支持
比如then可以这样用,而done不可以:
promise().then().then().then() 

 

promise捕获错误

标签:blog   io   ar   div   sp   cti   log   on   c   

原文地址:http://www.cnblogs.com/cjy1993/p/3979103.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!