我想显示来自我的API的错误消息,问题是如果我检查response.ok
我无法达到该错误,它会返回Fetch错误,而不是来自API的错误..
如果我不使用if(response.ok)...
,它会从API返回错误,但会调度成功操作。
以下是示例,登录操作:
export const signIn = data => dispatch => {
dispatch({
type: SIGN_IN
})
fetch(API_URL+'/login', {
method: 'POST',
headers: {
'content-type': 'application/json'
},
body: JSON.stringify(data),
})
.then( response => {
if (!response.ok) { throw response }
return response.json() //we only get here if there is no error
})
.then( json => {
dispatch({
type: SIGN_IN_SUCCESS, payload: json
}),
localStorage.setItem("token", 'Bearer '+json.token)
localStorage.setItem("user", JSON.stringify(json.user))
})
.catch( err => {
dispatch({
type: SIGN_IN_FAILED, payload: err
})
})
}
这是用于分配正确消息的操作代码,但是作为成功操作,而不是失败的消息。
export const signIn = data => dispatch => {
dispatch({
type: SIGN_IN
})
fetch(API_URL+'/login', {
method: 'POST',
headers: {
'content-type': 'application/json'
},
body: JSON.stringify(data),
})
.then( response => response.json())
.then( json => {
dispatch({
type: SIGN_IN_SUCCESS, payload: json
}),
localStorage.setItem("token", 'Bearer '+json.token)
localStorage.setItem("user", JSON.stringify(json.user))
})
.catch( err => {
dispatch({
type: SIGN_IN_FAILED, payload: err
})
})
}
答案 0 :(得分:5)
使用以下解决方案,可以处理 JSON API错误,通用API错误和通用提取错误
fetch("api/v1/demo", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"data": "demo"
})
})
.then(response => {
if (!response.ok) {
return Promise.reject(response);
}
return response.json();
})
.then(data => {
console.log("Success");
console.log(data);
})
.catch(error => {
if (typeof error.json === "function") {
error.json().then(jsonError => {
console.log("Json error from API");
console.log(jsonError);
}).catch(genericError => {
console.log("Generic error from API");
console.log(error.statusText);
});
} else {
console.log("Fetch error");
console.log(error);
}
});
答案 1 :(得分:4)
根据This Article:
Per MDN,
时拒绝承诺fetch()
API仅在“一个网络 遇到错误,但这通常意味着权限问题 或类似的。“
基本上
fetch()
只会拒绝用户的承诺 离线,或者发生一些不太可能的网络错误,例如DNS 查找失败。
然后,您可以使用这部分代码来使用非网络错误处理并使您的代码更具可读性
function handleErrors(response) {
if (!response.ok) throw Error(response.status);
return response;
}
fetch("API URL")
// handle network err/success
.then(handleErrors)
// use response of network on fetch Promise resolve
.then(response => console.log("ok") )
// handle fetch Promise error
.catch(error => console.log(error) );
答案 2 :(得分:0)
为了在发生某些错误时从服务器提取API消息,您必须使用以下习惯用法(尽管它不在表面上),请参见link
fetch("http://localhost:8090/test/error", {
method: 'GET',
headers: {
'Accept': 'application/json'
}
})
.then(result => {
//Here body is not ready yet, throw promise
if (!result.ok) throw result;
return result.json();
})
.then(result => {
//Successful request processing
console.log(result);
}).catch(error => {
//Here is still promise
console.log(error);
error.json().then((body) => {
//Here is already the payload from API
console.log(body);
});
})
详细-是的!但是确实满足需要。