Sie können jQuery File Download verwenden Plugin für Ihren Zweck, es ist ein einfaches Beispiel, das Sie in Ihrem Client verwenden können, um die heruntergeladene Datei zu verwalten:
$.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 gibt es weitere Beispiele