我们对fetch
进行了以下调用。
this.http.fetch('flasher', { method: 'post', body: jsonPayload })
.then(response => response.json())
.then(data => console.log(data));
当我们收到200响应但当我们收到500响应时没有记录到控制台时,这是有效的。我们如何处理500?
答案 0 :(得分:12)
将then
与catch
结合使用。
fetch('http://some-site.com/api/some.json')
.then(function(response) { // first then()
if(response.ok)
{
return response.text();
}
throw new Error('Something went wrong.');
})
.then(function(text) { // second then()
console.log('Request successful', text);
})
.catch(function(error) { // catch
console.log('Request failed', error);
});
fetch()
返回包含Promise
对象的Response
。 Promise
可以成就或被拒绝。 Fulfillment运行第一个then()
,返回其承诺,并运行第二个then()
。拒绝在第一个then()
上投放并跳转到catch()
。