我試圖訪問並顯示存儲在特定URL中的數據。但是我的代碼沒有正確運行。對此有何建議?Javascript - 數據訪問
function getData(theURL) {
var xmlHttp = null;
xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", theURL, false);
xmlHttp.send(null);
return xmlHttp.responseText;
}
var url = "https://cloudant.com/futon/document.html?acharya%2Ftoxtweet/ff558f75077e8c758523cd3bd8ffdf88";
getData(url);
「運行不正常」是什麼意思? –
你確定你沒有違反xmlhttprequest同源策略嗎? –
你不能發送ajax請求來跨域,它應該是同一個域。你必須使用iframe技術也使用facebook所使用的相同技術。 –