POST /api/channels - - ms - -
This message indicates that this request has been cancelled at some point in its life cycle, since there is no elapsed time recorded.
It turns out I've been thinking in the wrong way, it's the client, not server, stupid... stupid...
I never thought the possibility of a client browser can cancel the http request before, well, drew a lesson.
The better solution to handle this is to listen to the request's close event, and do some clean work, as referenced in this SO post
This file contains 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
function cancellableRequest(req, res, next) { | |
var cancelRequest = false; | |
req.on('close', function (err){ | |
cancelRequest = true; | |
}); | |
doSomthingDirty() | |
.then(function(result){ | |
// ... response result; | |
}) | |
.finally(function(){ | |
if (cancelRequest) { | |
// ... clean the dirty things | |
} | |
}); | |
.catch(function(error){ | |
if (cancelRequest) { | |
// ... response as request cancelled | |
} | |
}); | |
} |
No comments:
Post a Comment