美文网首页
Promise.prototype.then()

Promise.prototype.then()

作者: 丁先生_b64b | 来源:发表于2019-11-17 01:12 被阅读0次

https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Promise/then

https://blog.csdn.net/weixin_37719279/article/details/80951280

1.Promise.prototype.then()方法

Promise 实例具有then方法,也就是说,then方法是定义在原型对象Promise.prototype上的。它的作用是为 Promise 实例添加状态改变时的回调函数。then方法的第一个参数是resolved状态的回调函数,第二个参数(可选)是rejected状态的回调函数。

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

getJSON("/posts.json").then(function(json){

returnjson.post;

}).then(function(post){

// ...

});

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

采用链式的then,可以指定一组按照次序调用的回调函数。这时,前一个回调函数,有可能返回的还是一个Promise对象(即有异步操作),这时后一个回调函数,就会等待该Promise对象的状态发生变化,才会被调用。

相关文章

  • Promise.prototype.then()

    https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/R...

  • Promise 对象

    Promise 的含义 基本用法 Promise.prototype.then() Promise.prototy...

  • Promise 对象

    目录:Promise 的含义基本用法Promise.prototype.then()Promise.prototy...

  • promise的小结

    声明一个Promise对象 Promise.prototype.then() 和 Promise.prototyp...

  • promise浅析

    创建promise Promise.prototype.then方法的使用Promise实例生成后,可用then方...

  • Promise对象方法

    Promise.prototype.then() Promise实例具有then方法,也就是说,then方法是定义...

  • ES6 Promise

    ES6 promise 的一些常用方法 Promise.prototype.then() Promise.prot...

  • promise

    本文是整理阮一峰大神ES6中 Promise 的学习笔记 目录: Promise.prototype.then()...

  • ES6之promise(then与catch)

    一、 Promise.prototype.then 它的作用是为 Promise 实例添加状态改变时的回调函数。前...

网友评论

      本文标题:Promise.prototype.then()

      本文链接:https://www.haomeiwen.com/subject/twgjictx.html