其他分享
首页 > 其他分享> > promise学习---中断promise链(then回调链)

promise学习---中断promise链(then回调链)

作者:互联网

中断 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);
        });

 

标签:console,log,中断,value,---,reason,promise,new
来源: https://www.cnblogs.com/leiyanting/p/15399340.html