downloadURL
ファイルをダウンロードするために使用している関数は次のとおりです。
function downloadURL(url) {
var hiddenIFrameID = 'hiddenDownloader',
iframe = document.getElementById(hiddenIFrameID);
if (iframe === null) {
iframe = document.createElement('iframe');
iframe.id = hiddenIFrameID;
iframe.style.display = 'none';
document.body.appendChild(iframe);
}
iframe.src = url;
};
これは、ファイルのダウンロードには完全に機能しますが、今のところ、http ステータス コードが 200 でない場合は、戻り値の http ステータス コードを取得しalert
たいと考えています。
誰かがそれを取得する方法を教えてもらえますか? 前もって感謝します。