leiyanting

导航

 
中断 promise 链
  (1) 当使用 promise 的 then 链式调用时, 在中间中断, 不再调用后面的回调函数
  (2) 办法: 在回调函数中返回一个 pendding 状态的 promise 对象
 
        let p = new Promise((resolve, reject) => {
            setTimeout(() => {
                resolve('OK');
            }, 1000);
        });

        p.then(value => {
            console.log(111);
            //有且只有一个方式 如下
            return new Promise(() => {});
        }).then(value => {
            console.log(222);
        }).then(value => {
            console.log(333);
        }).catch(reason => {
            console.warn(reason);
        });

 

posted on 2021-10-12 19:55  leiyanting  阅读(403)  评论(0编辑  收藏  举报