Skip to content

Instantly share code, notes, and snippets.

@allangrds
Created October 26, 2020 20:51
Show Gist options
  • Save allangrds/0c8c2ebab0f71d67a4da5a3e9d7716f0 to your computer and use it in GitHub Desktop.
Save allangrds/0c8c2ebab0f71d67a4da5a3e9d7716f0 to your computer and use it in GitHub Desktop.
axios({
method: 'post',
url: '/login',
timeout: 4000, // 4 segundos timeout
data: {
firstName: 'David',
lastName: 'Pollock'
}
})
.then(response => {/* tratamento da resposta */})
.catch(error => console.error('timeout excedido'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment