首页 > 代码库 > promise捕获错误
promise捕获错误
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捕获错误
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。