Created
March 17, 2018 18:44
-
-
Save Kelin2025/d7a85c50817757eed5ba56d8ee214a44 to your computer and use it in GitHub Desktop.
Apicase events
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
doRequest({ url: '/api/posts' }) | |
.on('done', res => console.log('Success')) | |
.on('fail', res => console.log('Failed but it is OK')) | |
.on('error', err => console.log('JS Error', err)) | |
.on('cancel', (_) => console.log('Request was cancelled')) | |
.on('progress', (p) => console.log('XHR progress', p.loaded / p.total)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment