Il supporto per il download di file binari nell'uso di Ajax non è eccezionale, è ancora in fase di sviluppo come bozze funzionanti .
Metodo di download semplice:
Puoi fare in modo che il browser scarichi il file richiesto semplicemente usando il codice qui sotto, che è supportato in tutti i browser e ovviamente attiverà la richiesta WebApi allo stesso modo.
$scope.downloadFile = function(downloadPath) {
window.open(downloadPath, '_blank', '');
}
Metodo di download binario Ajax:
L'utilizzo di ajax per scaricare il file binario può essere eseguito in alcuni browser e di seguito è un'implementazione che funzionerà con le versioni più recenti di Chrome, Internet Explorer, FireFox e Safari.
Usa un arraybuffer
tipo di risposta, che viene quindi convertito in JavaScript blob
, che viene quindi presentato per salvare utilizzando il saveBlob
metodo - sebbene sia attualmente presente solo in Internet Explorer - o trasformato in un URL di dati BLOB che viene aperto dal browser, attivando la finestra di download se il tipo mime è supportato per la visualizzazione nel browser.
Supporto per Internet Explorer 11 (fisso)
Nota: a Internet Explorer 11 non piaceva usare la msSaveBlob
funzione se fosse stata aliasata - forse una funzionalità di sicurezza, ma più probabilmente un difetto, quindi l'utilizzo var saveBlob = navigator.msSaveBlob || navigator.webkitSaveBlob ... etc.
per determinare il saveBlob
supporto disponibile ha causato un'eccezione; quindi perché il codice qui sotto ora prova navigator.msSaveBlob
separatamente. Grazie? Microsoft
// Based on an implementation here: web.student.tuwien.ac.at/~e0427417/jsdownload.html
$scope.downloadFile = function(httpPath) {
// Use an arraybuffer
$http.get(httpPath, { responseType: 'arraybuffer' })
.success( function(data, status, headers) {
var octetStreamMime = 'application/octet-stream';
var success = false;
// Get the headers
headers = headers();
// Get the filename from the x-filename header or default to "download.bin"
var filename = headers['x-filename'] || 'download.bin';
// Determine the content type from the header or default to "application/octet-stream"
var contentType = headers['content-type'] || octetStreamMime;
try
{
// Try using msSaveBlob if supported
console.log("Trying saveBlob method ...");
var blob = new Blob([data], { type: contentType });
if(navigator.msSaveBlob)
navigator.msSaveBlob(blob, filename);
else {
// Try using other saveBlob implementations, if available
var saveBlob = navigator.webkitSaveBlob || navigator.mozSaveBlob || navigator.saveBlob;
if(saveBlob === undefined) throw "Not supported";
saveBlob(blob, filename);
}
console.log("saveBlob succeeded");
success = true;
} catch(ex)
{
console.log("saveBlob method failed with the following exception:");
console.log(ex);
}
if(!success)
{
// Get the blob url creator
var urlCreator = window.URL || window.webkitURL || window.mozURL || window.msURL;
if(urlCreator)
{
// Try to use a download link
var link = document.createElement('a');
if('download' in link)
{
// Try to simulate a click
try
{
// Prepare a blob URL
console.log("Trying download link method with simulated click ...");
var blob = new Blob([data], { type: contentType });
var url = urlCreator.createObjectURL(blob);
link.setAttribute('href', url);
// Set the download attribute (Supported in Chrome 14+ / Firefox 20+)
link.setAttribute("download", filename);
// Simulate clicking the download link
var event = document.createEvent('MouseEvents');
event.initMouseEvent('click', true, true, window, 1, 0, 0, 0, 0, false, false, false, false, 0, null);
link.dispatchEvent(event);
console.log("Download link method with simulated click succeeded");
success = true;
} catch(ex) {
console.log("Download link method with simulated click failed with the following exception:");
console.log(ex);
}
}
if(!success)
{
// Fallback to window.location method
try
{
// Prepare a blob URL
// Use application/octet-stream when using window.location to force download
console.log("Trying download link method with window.location ...");
var blob = new Blob([data], { type: octetStreamMime });
var url = urlCreator.createObjectURL(blob);
window.location = url;
console.log("Download link method with window.location succeeded");
success = true;
} catch(ex) {
console.log("Download link method with window.location failed with the following exception:");
console.log(ex);
}
}
}
}
if(!success)
{
// Fallback to window.open method
console.log("No methods worked for saving the arraybuffer, using last resort window.open");
window.open(httpPath, '_blank', '');
}
})
.error(function(data, status) {
console.log("Request failed with status: " + status);
// Optionally write the error out to scope
$scope.errorDetails = "Request failed with status: " + status;
});
};
Uso:
var downloadPath = "/files/instructions.pdf";
$scope.downloadFile(downloadPath);
Appunti:
È necessario modificare il metodo WebApi per restituire le seguenti intestazioni:
Ho usato l' x-filename
intestazione per inviare il nome file. Questa è un'intestazione personalizzata per comodità, tuttavia è possibile estrarre il nome file dall'intestazione content-disposition
utilizzando espressioni regolari.
Dovresti impostare anche l' content-type
intestazione mime per la tua risposta, in modo che il browser conosca il formato dei dati.
Spero che aiuti.