Anda dapat menggunakan Unduhan File jQuery plugin untuk tujuan Anda, ini adalah contoh sederhana yang dapat Anda gunakan di klien Anda untuk mengelola file yang diunduh:
$.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');
});
Di sini ada contoh lainnya