admin管理员组文章数量:1342656
If a fetch call fails in Chrome, then the only error details that I get back is
TypeError: Failed to fetch
How do I display an informative error message to the end user in this case?
Specifically:
Is it possible to get any details about why fetch failed?
For example, if the server crashed, Chrome DevTools might log a console message of net:ERR_EMPTY_RESPONSE, but there appears to be no way to access this from JavaScript.
As far as I can tell, the answer is no; I assume this is for security reasons, to avoid letting malicious JS find out which sites are and aren't accessible by inspecting error messages.
Is it possible to distinguish fetch errors from other TypeError
s?
If I can't get error details, I'd like to at least replace the horribly vague "Failed to fetch" with an informative "Failed to access the web site; please try again later" message, and I'd like to do this without any risk of displaying that message for other TypeError
s.
The only solution I've found here is to check the actual message
to see if it's "Failed to fetch"
. This is obviously browser-specific; it works in Chrome, it seems like it will work in any user language of Chrome, and other browsers would need their own testing and handling.
If a fetch call fails in Chrome, then the only error details that I get back is
TypeError: Failed to fetch
How do I display an informative error message to the end user in this case?
Specifically:
Is it possible to get any details about why fetch failed?
For example, if the server crashed, Chrome DevTools might log a console message of net:ERR_EMPTY_RESPONSE, but there appears to be no way to access this from JavaScript.
As far as I can tell, the answer is no; I assume this is for security reasons, to avoid letting malicious JS find out which sites are and aren't accessible by inspecting error messages.
Is it possible to distinguish fetch errors from other TypeError
s?
If I can't get error details, I'd like to at least replace the horribly vague "Failed to fetch" with an informative "Failed to access the web site; please try again later" message, and I'd like to do this without any risk of displaying that message for other TypeError
s.
The only solution I've found here is to check the actual message
to see if it's "Failed to fetch"
. This is obviously browser-specific; it works in Chrome, it seems like it will work in any user language of Chrome, and other browsers would need their own testing and handling.
-
8
TypeError
seems like...really the wrong error type. Strange. – T.J. Crowder Commented Sep 8, 2016 at 14:47 -
.catch
doesn't work for you? – Jaromanda X Commented Sep 8, 2016 at 14:52 -
@JaromandaX -
.catch
works, but I'd like to get error details if possible (my first question), and to avoid incorrectly catching otherTypeError
s as fetch errors, I feel like I either have to put the.catch
very close tofetch
(so no other errors can occur, thus losing flexibility in how I structure my promises) or rely on browser-specific behavior like the text of the fetchmessage
(my second question). – Josh Kelley Commented Sep 8, 2016 at 15:06 -
I meant does handling the error in
.catch
stop the output to console (I take it that's where this error is showing) – Jaromanda X Commented Sep 8, 2016 at 15:09 -
The
TypeError: Failed to fetch
message is all you get in the.catch
so you'll have to do some fancy footwork to change that to a meaningful message - the.catch
can be at the end of the chain, doesn't matter – Jaromanda X Commented Sep 8, 2016 at 15:13
1 Answer
Reset to default 8It seems likely that there aren't any more details for networking/permission/input problems.
Is it possible to distinguish fetch errors from other TypeErrors?
Yes, you just need to catch
only the the errors from the fetch
call:
fetch(…)
.catch(err => new FetchError(err))
.…
class FetchError extends Error {
constructor(orig) {
super();
this.message = "fetch error";
this.details = orig;
}
}
本文标签: google chromeHow do I handle JavaScript Fetch errorsStack Overflow
版权声明:本文标题:google chrome - How do I handle JavaScript Fetch errors? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743694850a2523330.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论