xhrを介してhttp:// javascriptファイルを取得しようとしていますが、上記のエラーが発生しています。
これが私のコードです:
function getXHR() {
var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
if (is_chrome) {
var xhr = new XMLHttpRequest();
xhr.open("GET", "http://api.widgets.org/widget/1.1.2/widget_api.js?autoCreate=false&log=true", true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
var s = document.createElement('script');
s.textContent = xhr.responseText;
(document.head||document.documentElement).appendChild(s);
s.parentNode.removeChild(s);
}
}
xhr.send();
}
}
https://でスクリプトを使用したいのですが、Chromeはhttp://からすべてを自動的にブロックするため、これはChrome専用です。スクリプトを取得しているサーバーはhttps://を実行しておらず、スクリプトが必要です/複数のスクリプトがあります。すべてをデータファイルにコピーする必要はありません。
私が遭遇しているエラー:
XMLHttpRequest cannot load http://api.widgets.org/widget/1.1.2/widget_api.js?autoCreate=false&log=true. Origin https://mysite.com is not allowed by Access-Control-Allow-Origin.