불행히도 @BrianFreud의 대답은 내 요구에 맞지 않고 약간 다른 필요가 있었고 @BrianFreud의 질문에 대한 대답이 아니라는 것을 알고 있지만 많은 사람들이 내 필요로 여기에 왔기 때문에 여기에 남겨 둡니다. 나는 'URL에서 파일이나 blob을 얻는 방법'과 같은 것이 필요했고 현재 정답은 도메인 간이 아니기 때문에 내 요구에 맞지 않습니다.
Amazon S3 / Azure Storage의 이미지를 사용하는 웹 사이트가 있고 거기에 uniqueidentifiers라는 이름의 객체를 저장합니다.
샘플 : http : //****.blob.core.windows.net/systemimages/bf142dc9-0185-4aee-a3f4-1e5e95a09bcf
이 이미지 중 일부는 시스템 인터페이스에서 다운로드해야합니다. HTTP 서버를 통해이 트래픽을 전달하는 것을 방지하기 위해이 개체는 액세스하는 데 보안이 필요하지 않기 때문에 (도메인 필터링 제외) 사용자 브라우저에서 직접 요청하고 로컬 처리를 사용하여 파일에 실제 이름을 부여하고 신장.
이를 위해 Henry Algus의 훌륭한 기사를 사용했습니다.
http://www.henryalgus.com/reading-binary-files-using-jquery-ajax/
1. 첫 번째 단계 : jquery에 바이너리 지원 추가
/**
*
* jquery.binarytransport.js
*
* @description. jQuery ajax transport for making binary data type requests.
* @version 1.0
* @author Henry Algus <henryalgus@gmail.com>
*
*/
// use this transport for "binary" data type
$.ajaxTransport("+binary", function (options, originalOptions, jqXHR) {
// check for conditions and support for blob / arraybuffer response type
if (window.FormData && ((options.dataType && (options.dataType == 'binary')) || (options.data && ((window.ArrayBuffer && options.data instanceof ArrayBuffer) || (window.Blob && options.data instanceof Blob))))) {
return {
// create new XMLHttpRequest
send: function (headers, callback) {
// setup all variables
var xhr = new XMLHttpRequest(),
url = options.url,
type = options.type,
async = options.async || true,
// blob or arraybuffer. Default is blob
dataType = options.responseType || "blob",
data = options.data || null,
username = options.username || null,
password = options.password || null;
xhr.addEventListener('load', function () {
var data = {};
data[options.dataType] = xhr.response;
// make callback and send data
callback(xhr.status, xhr.statusText, data, xhr.getAllResponseHeaders());
});
xhr.open(type, url, async, username, password);
// setup custom headers
for (var i in headers) {
xhr.setRequestHeader(i, headers[i]);
}
xhr.responseType = dataType;
xhr.send(data);
},
abort: function () {
jqXHR.abort();
}
};
}
});
2. 두 번째 단계 :이 전송 유형을 사용하여 요청하십시오.
function downloadArt(url)
{
$.ajax(url, {
dataType: "binary",
processData: false
}).done(function (data) {
// just my logic to name/create files
var filename = url.substr(url.lastIndexOf('/') + 1) + '.png';
var blob = new Blob([data], { type: 'image/png' });
saveAs(blob, filename);
});
}
이제 만든 Blob을 원하는대로 사용할 수 있습니다. 제 경우에는 디스크에 저장하고 싶습니다.
3. 선택 사항 : FileSaver를 사용하여 사용자 컴퓨터에 파일 저장
FileSaver.js를 사용하여 다운로드 한 파일을 디스크에 저장했습니다. 필요한 경우 다음 자바 스크립트 라이브러리를 사용하세요.
https://github.com/eligrey/FileSaver.js/
나는 이것이 더 구체적인 필요를 가진 다른 사람들을 도울 것으로 기대합니다.
XMLHttpRequest
. blob URL 로 를 보내는 것뿐입니다.