admin管理员组文章数量:1345031
my problem differs from React Native fetch() Network Request Failed, I'm not struggling with http or https, I just want to provide a nice error to the user if the request fails due to the internet connection, wrong API, etc. instead of getting react native error.
I have a form and want to send it to a server and get a response so I wrote this:
submitForm = async () => {
fetch("www.somewhere", {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(some_data)
})
.then((response) => response.json())
.then((responseJson) => {
// do something
})
.catch((error) => {
this.setState({server_error: "request failed try again."});
});
};
But It seems that my catch doesn't work correctly because if the request fails I get an error from react native like this: and in production, it just jumps out of the app, how can I avoid this?
my problem differs from React Native fetch() Network Request Failed, I'm not struggling with http or https, I just want to provide a nice error to the user if the request fails due to the internet connection, wrong API, etc. instead of getting react native error.
I have a form and want to send it to a server and get a response so I wrote this:
submitForm = async () => {
fetch("www.somewhere.", {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(some_data)
})
.then((response) => response.json())
.then((responseJson) => {
// do something
})
.catch((error) => {
this.setState({server_error: "request failed try again."});
});
};
But It seems that my catch doesn't work correctly because if the request fails I get an error from react native like this: and in production, it just jumps out of the app, how can I avoid this?
Share Improve this question edited Feb 12, 2019 at 12:09 Reza Shoja asked Feb 12, 2019 at 11:51 Reza ShojaReza Shoja 9273 gold badges13 silver badges27 bronze badges 01 Answer
Reset to default 5Don't know if this will solve your problem, but your fetch code tries to create JSON, even if the response is a 404, for example.
You also need to check if the response is OK before creating JSON
submitForm = async () => {
fetch("www.somewhere.", {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(some_data)
})
.then((response) => {
if(response.statusText == "OK" && response.status >= 200 && response.status < 300) {
return response.json()
} else {
throw new Error("Server can't be reached!")
}
})
.then((json) => {
console.log("hooray! we have json!")
console.log(json)
})
.catch((error) => {
console.log("error fetching data")
console.log(error)
console.log(error.message) // Server can't be reached!
this.setState({server_error: "request failed try again."});
});
};
本文标签: javascripthow to handle network request failed errorStack Overflow
版权声明:本文标题:javascript - how to handle network request failed error? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743795061a2540274.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论