Skip to content

Instantly share code, notes, and snippets.

@jwchang0206
Created March 2, 2020 10:12
Show Gist options
  • Save jwchang0206/e6d89705720fad6e77082a3318372923 to your computer and use it in GitHub Desktop.
Save jwchang0206/e6d89705720fad6e77082a3318372923 to your computer and use it in GitHub Desktop.
import axios, { CancelToken } from 'axios';
const source = CancelToken.source();
setTimeout(async () => {
const { data } = await axios.get(url, { cancelToken: source.token }));
alert(JSON.stringify(data));
}, 5000);
source.cancel();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment