U kunt jQuery File Download gebruiken plug-in voor uw doel, het is een eenvoudig voorbeeld dat u in uw client kunt gebruiken om het gedownloade bestand te beheren:
$.fileDownload('urlForYourFile')
.done(function () {
alert('File download a success!');
$.post('/postChatFileSend', {fileName: 'fileName'}, function(data) {
//Check the response, if the status propery is true, the file must have been removed from the server
});
})
.fail(function() {
alert('An error has ocurred');
});
Hier zijn meer voorbeelden