MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

como detectar se o download do arquivo foi bem-sucedido do lado do cliente em js médio/angular


Você pode usar Download de arquivo jQuery plugin para seu propósito, é um exemplo simples que você pode usar em seu cliente para gerenciar o arquivo baixado:
$.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');
    });

Aqui estão mais exemplos