I am implementing abortable fetch calls.
There are basically two reasons for aborting the fetch on my page:
- the user decides he/she does not want to wait for the AJAX data anymore and clicks a button; in this case the UI shows a message "call /whatever interrupted"
- the user has moved to another part of the page and the data being fetched are no longer needed; in this case I don't want the UI to show anything, as it'd just confuse the user
In order to discriminate the two cases I was planning to use the reason
parameter of the AbortController.abort
method, but the .catch clause in my fetch call always receives a DOMException('The user aborted a request', ABORT_ERROR)
.
I have tried to provide a different DOMException
as reason for the abort in case 2, but the difference is lost.
Has anyone found how to send information to the fetch .catch clause with regards to the reason to abort?
In the example below, I demonstrate how to determine the reason for an abortion of a
fetch
request. I provide inline comments for explanation. Feel free to comment if anything is unclear.