JavaScript手动实现JSONP代码

Posted 一片叶子啊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript手动实现JSONP代码相关的知识,希望对你有一定的参考价值。

浏览器的同源策略不允许我们直接通过ajax call别的域名上的url,但是script,img标签却米有这个限制,jsonp便是利用了这一点,通过在页面上生成一个src为我们所要调用url的script标签,能拿到服务器返回的结果,当然这个只支持get请求,同样,服务器端也要能够接受我们所传递的参数。

 

下面是一个例子:

<script>

function removeScript(scriptId) {
  const script = document.getElementById(scriptId);
  document.getElementsByTagName(‘head‘)[0].removeChild(script);
}


function clearFunction(functionName) {
  try {
    delete window[functionName]; //IE8下直接删除会报错
  } catch (e) {
    window[functionName] = undefined;
  }
}

function call(url) {
    var callbackFunction = Math.ceil(Math.random() * 100000 );
    url += (url.indexOf(‘?‘) === -1) ? ‘?‘ : ‘&‘;
    var jsonpScript = document.createElement(‘script‘);
    jsonpScript.setAttribute(‘src‘, `${url}callabck=${callbackFunction}`);
    jsonpScript.id = scriptId;
    document.getElementsByTagName(‘head‘)[0].appendChild(jsonpScript);

    window[callbackFunction] = function(data) {
        //在这里处理数据,然后最后记得一定要删除script并且将函数从window对象上删除掉。 
       //Handling data...   
        removeScript(scriptId);
        clearFunction(callbackFunction);
    }
}

</script>

 

以上是关于JavaScript手动实现JSONP代码的主要内容,如果未能解决你的问题,请参考以下文章

存在 4xx 或 5xx Http 错误代码时在 Javascript 中解析 JSONP 响应

从 javascript 代码中使用 jsonp

JavaScript的jsonp

JSONP跨域的原理解析及其实现介绍

html PHP代码片段: - AJAX基本示例:此代码演示了使用PHP和JavaScript实现的基本AJAX功能。

[javascript]jsonp-function 代码段