MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

come rilevare se il file viene scaricato correttamente dal lato client in mean/angular js

Puoi utilizzare jQuery File Download plug-in per il tuo scopo, è un semplice esempio che puoi utilizzare nel tuo client per gestire il file scaricato:

$.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');
    });

Qui ci sono altri esempi