अजाक्स का उपयोग करने में बाइनरी फ़ाइलों को डाउनलोड करने के लिए समर्थन महान नहीं है, यह अभी भी विकास के तहत काम कर रहा है ड्राफ्ट के रूप में ।
सरल डाउनलोड विधि:
आप नीचे दिए गए कोड का उपयोग करके ब्राउज़र को अनुरोधित फ़ाइल डाउनलोड कर सकते हैं, और यह सभी ब्राउज़रों में समर्थित है, और जाहिर है कि वेबएपीआई अनुरोध को केवल एक ही ट्रिगर करेगा।
$scope.downloadFile = function(downloadPath) {
window.open(downloadPath, '_blank', '');
}
Ajax द्विआधारी डाउनलोड विधि:
बाइनरी फाइल को डाउनलोड करने के लिए अजाक्स का उपयोग कुछ ब्राउज़रों में किया जा सकता है और नीचे एक कार्यान्वयन है जो क्रोम, इंटरनेट एक्सप्लोरर, फायरफॉक्स और सफारी के नवीनतम स्वादों में काम करेगा।
यह एक arraybuffer
प्रतिक्रिया प्रकार का उपयोग करता है , जिसे तब जावास्क्रिप्ट में परिवर्तित किया जाता है, जिसे बाद में प्रतिक्रिया blob
का उपयोग करके सहेजने के लिए प्रस्तुत किया जाता हैsaveBlob
विधि - हालांकि यह केवल वर्तमान में इंटरनेट एक्सप्लोरर में मौजूद है - या एक ब्लॉब डेटा URL में बदल गया है जो ब्राउज़र द्वारा खोला जाता है, ट्रिगर होता है यदि ब्राउज़र में माइम प्रकार देखने के लिए समर्थित है तो डाउनलोड संवाद।
Internet Explorer 11 समर्थन (फिक्स्ड)
नोट: इंटरनेट एक्सप्लोरर 11 msSaveBlob
फ़ंक्शन का उपयोग करना पसंद नहीं करता था अगर इसे अलियास किया गया था - शायद एक सुरक्षा सुविधा, लेकिन अधिक संभावना एक दोष है, इसलिए var saveBlob = navigator.msSaveBlob || navigator.webkitSaveBlob ... etc.
उपलब्ध saveBlob
समर्थन का निर्धारण करने के लिए उपयोग करने से अपवाद हुआ; इसलिए नीचे दिया गया कोड अब navigator.msSaveBlob
अलग से क्यों परीक्षण करता है । धन्यवाद? माइक्रोसॉफ्ट
// 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;
});
};
उपयोग:
var downloadPath = "/files/instructions.pdf";
$scope.downloadFile(downloadPath);
टिप्पणियाँ:
आपको निम्नलिखित शीर्ष लेखों को वापस करने के लिए अपनी WebApi विधि को संशोधित करना चाहिए:
मैंने x-filename
फ़ाइल नाम भेजने के लिए हेडर का उपयोग किया है । यह सुविधा के लिए एक कस्टम हैडर है, लेकिन आप content-disposition
नियमित रूप से अभिव्यक्ति का उपयोग करके हेडर से फ़ाइलनाम निकाल सकते हैं ।
आपको content-type
अपनी प्रतिक्रिया के लिए माइम हेडर भी सेट करना चाहिए , ताकि ब्राउज़र डेटा प्रारूप को जानता हो।
आशा है कि ये आपकी मदद करेगा।