これは重複しているように見えますが、似たような質問にはっきりと答えられません。XMLのXDomainRequest(CORS)がIE8/IE9で「アクセスが拒否されました」というエラーが発生しました
一部のXMLに対してCORSリクエストを実行しようとすると、IE8から「アクセスが拒否されました」というJSエラーが発生します。
私のコードは、この例から構成されている:http://www.html5rocks.com/en/tutorials/cors/
から
// Create the XHR object.
function createCORSRequest(method, url) {
var xhr = new XMLHttpRequest();
if ("withCredentials" in xhr) {
// XHR for Chrome/Firefox/Opera/Safari.
xhr.open(method, url, true);
} else if (typeof XDomainRequest != "undefined") {
// XDomainRequest for IE.
xhr = new XDomainRequest();
xhr.open(method, url);
} else {
// CORS not supported.
xhr = null;
}
return xhr;
}
// Helper method to parse the title tag from the response.
function getTitle(text) {
return text.match('<title>(.*)?</title>')[1];
}
// Make the actual CORS request.
function makeCorsRequest() {
// All HTML5 Rocks properties support CORS.
var url = 'http://updates.html5rocks.com';
var xhr = createCORSRequest('GET', url);
if (!xhr) {
alert('CORS not supported');
return;
}
// Response handlers.
xhr.onload = function() {
var text = xhr.responseText;
var title = getTitle(text);
alert('Response from CORS request to ' + url + ': ' + title);
};
xhr.onerror = function() {
alert('Woops, there was an error making the request.');
};
xhr.send();
}
このべき XDomainRequestを使用してIE8での仕事、と私は例のページをロードし、上の「サンプルの実行」をクリックしてくださいhtml5rocksページ、IE8で動作します。しかし、自分のページにコードをコピーして実行するとすぐに、XDomainRequestのxhr.open()行に「アクセスが拒否されました」というエラーが表示されます。
これは私には本当にうんざりしています。サーバーは正しく設定されているので、フロントエンドとは何か関係があります。助けることができる誰にも事前に感謝します!
あなたはHTTPSでいますか? – epascarello
@epascarelloいいえ、使用されているURLはhttpsを超えていません... – tripRev
どのURLにアクセスしていますか? – SilverlightFox