在没有外部库的情况下使用 JavaScript 进行跨域 JSONP 请求
JSONP(带有 Padding 的 JSON)是一种允许跨域请求的技术通过将回调函数附加到请求 URL。回调函数由客户端定义,并由服务器在成功接收请求后执行。
如何在没有 jQuery 的情况下发出 JSONP 请求
制作一个没有 jQuery 的 JSONP 请求,您可以按照以下步骤操作:
<code class="javascript">function foo(data) { // Process the JSON data }</code>
<code class="javascript">const url = '//example.com/path/to/jsonp?callback=foo';</code>
<code class="javascript">const script = document.createElement('script'); script.src = url;</code>
<code class="javascript">document.head.appendChild(script); // or document.getElementsByTagName('head')[0].appendChild(script) in older browsers</code>
服务器响应 JSON 数据后,回调函数将被执行,您可以使用提供的数据来填充您的应用程序。
以上是如何在没有 jQuery 的情况下使用 JavaScript 进行跨域 JSONP 请求?的详细内容。更多信息请关注PHP中文网其他相关文章!