O suporte para o download de arquivos binários no uso do ajax não é ótimo, ainda está em desenvolvimento como rascunhos de trabalho .
Método simples de download:
Você pode fazer com que o navegador baixe o arquivo solicitado simplesmente usando o código abaixo, e isso é suportado em todos os navegadores e, obviamente, acionará a solicitação WebApi da mesma forma.
$scope.downloadFile = function(downloadPath) {
window.open(downloadPath, '_blank', '');
}
Método de download binário do Ajax:
O uso do ajax para baixar o arquivo binário pode ser feito em alguns navegadores, e abaixo está uma implementação que funcionará nos mais recentes sabores do Chrome, Internet Explorer, FireFox e Safari.
Ele usa um arraybuffer
tipo de resposta, que é convertido em JavaScript blob
, que é apresentado para salvar usando o saveBlob
método - embora este esteja presente apenas no Internet Explorer - ou transformado em uma URL de dados de blob que é aberta pelo navegador, acionando a caixa de diálogo de download se o tipo MIME for suportado para exibição no navegador.
Suporte ao Internet Explorer 11 (fixo)
Nota: O Internet Explorer 11 não gostou de usar a msSaveBlob
função se ela tivesse um alias - talvez um recurso de segurança, mas provavelmente uma falha. Portanto, o uso var saveBlob = navigator.msSaveBlob || navigator.webkitSaveBlob ... etc.
para determinar o saveBlob
suporte disponível causou uma exceção; por isso, o código abaixo agora é testado navigator.msSaveBlob
separadamente. Obrigado? 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);
Notas:
Você deve modificar seu método WebApi para retornar os seguintes cabeçalhos:
Eu usei o x-filename
cabeçalho para enviar o nome do arquivo. Este é um cabeçalho personalizado por conveniência, mas você pode extrair o nome do arquivo do content-disposition
cabeçalho usando expressões regulares.
Você também deve definir o content-type
cabeçalho MIME para sua resposta, para que o navegador conheça o formato dos dados.
Eu espero que isso ajude.