谷歌网站JS HTTP请求

时间:2017-01-16 17:09:59

标签: javascript google-sites

我有一个远程服务器,它接收带参数的GET请求并返回一个字符串。

我想在google网站页面中添加一个JS代码,该页面将HTTP GET到该服务器并使用HTML框在表中打印响应字符串:

function httpGetAsync(theUrl, callback)
{
    var xmlHttp = new XMLHttpRequest();
    xmlHttp.onreadystatechange = function() { 
        if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
            callback(xmlHttp.responseText);
    }
    xmlHttp.open("GET", theUrl, true); 
    xmlHttp.send(null);
}

Google网站不批准它并拒绝所有功能。 我还有其他选择吗?

0 个答案:

没有答案