Promise.resolve('x').then(function (a) { console.log(a); a += 'y'; }).then(function (b) { b += 'z'; console.log(b); });Promise.reject('x').catch(function (a) { console.log(a); a += 'y'; }).catch(function (b) { b += 'z'; console.log(b); });为什么先输出两个x 呢
添加回答
举报
0/150
提交
取消