在以下代码中,Promise.reject
不起作用,除非我专门使用return Promise.reject(...)
。这是为什么?
Promise.resolve('Promise 1 Done')
.then(function(result) {
console.log(result);
return 'Promise 2 Done'
}).then(function(result) {
let j;
try {
j = JSON.parse("invalid will throw");
console.log(j);
} catch(err) {
Promise.reject('Could not parse JSON');
}
console.log(result);
}).catch(function(err) {
console.log(err);
});
答案 0 :(得分:1)
Promise.reject
创建一个值,它不会抛出像throw
这样的函数中断的异常。如果您没有return
该值,它将被忽略,控制流程将继续。
鉴于你在一个承诺回调中,你可以(也可能应该)使用
throw new Error('Could not parse JSON');