为什么Promise.reject()需要返回?

时间:2016-08-23 22:20:08

标签: javascript promise return-value

在以下代码中,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);
});

1 个答案:

答案 0 :(得分:1)

Promise.reject创建一个值,它不会抛出像throw这样的函数中断的异常。如果您没有return该值,它将被忽略,控制流程将继续。

鉴于你在一个承诺回调中,你可以(也可能应该)使用

throw new Error('Could not parse JSON');