JavaScript Promise then()
描述
The then()
方法提供了两个回调函数。
一个函数在 Promise 成功时运行,另一个函数在 Promise 失败时运行。
语法
promise.then(fulfilled(), rejected())
参数
fulfilled() | Promise 成功时运行的函数 |
rejected() | Promise 失败时运行的函数 |
返回值
类型 | 描述 |
对象 | 一个新的 Promise 对象 |
浏览器支持
then()
是 ECMAScript6 (ES6) 的一个功能。
ES6 (JavaScript 2015) 自 2017 年 6 月起在所有现代浏览器中得到支持。
Chrome 51 | Edge 15 | Firefox 54 | Safari 10 | Opera 38 |
2016 年 5 月 | 2017 年 4 月 | 2017 年 6 月 | 2016 年 9 月 | 2016 年 6 月 |
then()
在 Internet Explorer 中不受支持。