私はCORSに関連する問題を抱えている上に存在する、私は外部のdomain.comをロードすることはできません有名な「アクセス制御が許起源」ヘッダが要求されたリソース
のXMLHttpRequestを取り除くことはできません。要求されたリソースに「Access-Control-Allow-Origin」ヘッダーが存在しません。エンドツーエンドの例、まだdoesntの仕事、同じエラーを取得 -
- http://www.html5rocks.com/en/tutorials/cors/:起源「mydomain.com」したがって、私が試したどのようなアクセス
を許可されていません。
// 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();
}
例。
どうすればいいですか? – Gintas
これはまったく新しいものです。 – Gintas
誰かが助けることができますか? – Gintas