ES6 Promise的resolve和reject和catch的数据 对应then的回调函数

1、resolve的东西,一定会进入then的第一个回调,肯定不会进入catch;
2、reject后的东西,一定会进入then中的第二个回调,如果then中没有写第二个回调,则进入catch

3、如果没有then, 也可以直接进入catch

你可能感兴趣的:(ES6 Promise的resolve和reject和catch的数据 对应then的回调函数)