Promise.prototype.then()和Promise.prototype.catch()

Promise.prototype.then()

Promise实例具有then方法,也就是说,then方法是定义在原型对象Promise.prototype上的。它的作用是为Promise实例添加状态改变时的回调函数。

then方法返回的是一个新的Promise实例(注意,不是原来那个Promise实例)。因此可以采用链式写法,即then方法后面再调用另一个then方法。

getJSON('/posts.json').then(function(json){
  return json.post;
}).then(function(){
  // ...
});

上面的代码使用then方法,依次指定了两个回调函数。第一个回调函数完成以后,会将返回结果作为参数,传入第二个回调函数。

采用链式的then,可以指定一组按照次序调用的回调函数。

getJSON('/post/1.json').then(function(post){
  return getJSON(post.commentURL);
}).then(function funcA(comments){
  console.log('Resolved:',comments);
}, function funB(err){
  console.log('Rejected:',err);
});

上面代码中,第一个then烦烦烦指定的回调函数,返回的是另一个Promise对象。这时,第二个then方法指定的回调函数,就会等待新的Promise对象状态发生变化。
如果变为Resolved,就调用funcA,如果状态变为Rejected,就调用funcB

如果采用箭头函数,上面的代码可以写的更简洁:

getJSON('/post/1.json').then(
    post=>getJSON(post.commentURL)
).then(
    commnets=>console.log('Resolved:',comments),
    err=>console.log('Rejected:',err)
);

Promise.prototype.catch()

Promise.prototype.catch方法是.then(null,rejeaction)的别名,用于指定发生错误时的回调函数。

getJSON('/posts.json').then(function(posts){
  // ...
}).catch(function(error){
  // 处理getJSON和前一个回调函数运行时发生的错误
  console.log(error);
});
  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值