20

也许我误解了如何async/await从像这样的文章中捕获错误https://jakearchibald.com/2014/es7-async-functions/和这个http://pouchdb.com/2015/03/05/taming- the-async-beast-with-es7.html,但我的catch块没有捕获 400/500。

async () => {
  let response
  try {
   let response = await fetch('not-a-real-url')
  }
  catch (err) {
    // not jumping in here.
    console.log(err)
  }
}()

如果有帮助,请在 codepen 上举例

4

1 回答 1

61

400/500 不是错误,而是响应。当出现网络问题时,您只会收到异常(拒绝)。

当服务器应答时,您必须检查它是否良好

try {
    let response = await fetch('not-a-real-url')
    if (!response.ok) // or check for response.status
        throw new Error(response.statusText);
    let body = await response.text(); // or .json() or whatever
    // process body
} catch (err) {
    console.log(err)
}
于 2015-10-26T20:38:20.870 回答