复制1Promise.reject(1) 2 .then(res => { 3 console.log(res); 4 return 2; 5 }) 6 .catch(err => { 7 console.log(err); 8 return 3 9 }) 10 .then(res => { 11 console.log(res); 12 });
1Promise.reject(1) 2 .then(res => { 3 console.log(res); 4 return 2; 5 }) 6 .catch(err => { 7 console.log(err); 8 return 3 9 }) 10 .then(res => { 11 console.log(res); 12 });
题库维护不易,您的支持就是我们最大的动力!