Cancel a Fetch Request with a Broadcaster and React

John Lindquist
InstructorJohn Lindquist
Share this video with your friends

Social Share Links

Send Tweet
Published 4 years ago
Updated 3 years ago

All broadcasters need a way to be canceled. To cancel a fetch, we'll need to add an AbortController. This lesson walks through putting the pieces together to cancel our getUrl broadcaster.

Instructor: [0:00] What we also have to do is find how we can set this up to cancel because we do need cancellation behavior with every broadcaster we create. With promises, we use AbortControllers. I'll create a new AbortController(). This is an object that has a signal on it. If I say controller.signal here and grab a signal, I can pass that signal into the config of the fetch.

[0:30] When I do this, it allows this controller to abort my fetch, meaning, from this cancellation function I'm returning, I would say, controller.abort(), and this would tell this signal to control this fetch and cancel it.

[0:48] If instead of console.log(cancel), I invoke cancel, I'll hit Save here and you'll see that I aborted that request. If I comment this out, hit Save, you'll see it goes through just fine. If I uncomment it, I successfully abort the request.

egghead
egghead
~ 22 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today