


Fortunately, I saw the rising sun again after the apocalypse, so I can still write articles here. Let’s get back to the topic. I recently worked on a project and needed to use a subdomain name to call an existing function under the main domain name, so I thought of it. Use jsonp to solve it. There are many friends who have this need in our usual projects, so we recorded it for future reference and hope it can help everyone.
What is the JSONP protocol?
JSONP is JSON with Padding. Due to the restrictions of the same-origin policy, XmlHttpRequest is only allowed to request resources from the current source (domain name, protocol, port). If we want to make a cross-domain request, we can make a cross-domain request by using the script tag of html and return the script code to be executed in the response, where the javascript object can be passed directly using JSON. This cross-domain communication method is called JSONP.
Obviously, JSONP is a Script Injection behavior and requires special attention to its security.
jsonp instance in Jquery
We need two pages to assume the client and server roles of the protocol respectively.
Client code:
The remote data is as follows:
Server code (this example uses PHP) :
$jsonp = $_REQUEST["callback"];
$str = '[{"id" :"1","name":"Test 1"},{"id":"2","name":"Test 2"}]';
$str = $jsonp . "(" .$ str.")";
echo $str;
?>

Principles and simple examples of Jsonp
jquery It is encapsulated, and you may not see the real implementation method. We use the following example to illustrate:
Client code:
Server code:
$str = '[{"id":"1","name" :"Test 1"},{"id":"2","name":"Test 2"}]';
$str = "OnJSONPServerResponse(" .$str.")";
echo $str;
?>

Not much else to say, I believe everyone should understand how it is implemented by looking at the code.
Notes:
1. Since jquery uses utf-8 encoding to transfer parameters in ajax processing, it is best to use utf-8 encoding on the jsonp processing end, which saves coding. Converted, remember to convert if it is not utf-8, otherwise the Chinese will be garbled.
2. It is best not to write the requested server URL as http://www.xxxxxxxxxxxx.cn/?act=add. It should be written as: http://www.xxxxxxxxxxxx.cn/index.php ?act=add, there is incompatibility during the application process.
That’s it. If any friends encounter any problems, please post them and let’s discuss them together.
Everyone is welcome to reprint, please indicate the originality and the link must be added when reprinting, otherwise...n words are omitted here
Signature: communicate together, learn together, help those in need, and achieve success together road.

Scrapy是一个开源的Python爬虫框架,它可以快速高效地从网站上获取数据。然而,很多网站采用了Ajax异步加载技术,使得Scrapy无法直接获取数据。本文将介绍基于Ajax异步加载的Scrapy实现方法。一、Ajax异步加载原理Ajax异步加载:在传统的页面加载方式中,浏览器发送请求到服务器后,必须等待服务器返回响应并将页面全部加载完毕才能进行下一步操

作为一种基于MVC模式的PHP框架,CakePHP已成为许多Web开发人员的首选。它的结构简单,易于扩展,而其中的AJAX技术更是让开发变得更加高效。在本文中,将介绍如何使用CakePHP中的AJAX。什么是AJAX?在介绍如何在CakePHP中使用AJAX之前,我们先来了解一下什么是AJAX。AJAX是“异步JavaScript和XML”的缩写,是指一种在

404页面基础配置404错误是www网站访问容易出现的错误。最常见的出错提示:404notfound。404错误页的设置对网站seo有很大的影响,而设置不当,比如直接转跳主页等,会被搜索引擎降权拔毛。404页面的目的应该是告诉用户:你所请求的页面是不存在的,同时引导用户浏览网站其他页面而不是关掉窗口离去。搜索引擎通过http状态码来识别网页的状态。当搜索引擎获得了一个错误链接时,网站应该返回404状态码,告诉搜索引擎放弃对该链接的索引。而如果返回200或302状态码,搜索引擎就会为该链接建立索引

jquery ajax报错403是因为前端和服务器的域名不同而触发了防盗链机制,其解决办法:1、打开相应的代码文件;2、通过“public CorsFilter corsFilter() {...}”方法设置允许的域即可。

ajax重构指的是在不改变软件现有功能的基础上,通过调整程序代码改善软件的质量、性能,使其程序的设计模式和架构更合理,提高软件的扩展性和维护性;Ajax的实现主要依赖于XMLHttpRequest对象,由于该对象的实例在处理事件完成后就会被销毁,所以在需要调用它的时候就要重新构建。

Vue中如何利用JSONP实现跨域请求简介由于同源策略的限制,前端在进行跨域请求时会受到一定的阻碍。JSONP(JSONwithPadding)是一种跨域请求的方法,它利用<script>标签的特性,通过动态创建<script>标签来实现跨域请求,并将响应数据作为回调函数的参数传递回来。本文将详细介绍在Vue中如何利用JSONP实

php用AJax和json实现登录验证的方法是:1、创建一个jsp示例文件,导入jquery依赖和fastjson依赖文件;2、新建login.js文件,获取用户名和密码文本内容;3、新建controller类,查询用户是否存在并把对象转化为json字符串类型返回给js文件;4、js判断是否成功然后进行页面跳转即可。

ajax同步的意思是当JavaScript代码加载到当前ajax的时候会把页面里所有的代码加载停止,页面处于假死状态,当这个ajax执行完之后,页面才会接触假死状态,代码继续运行;ajax异步的意思则是当前ajax代码运行的时候其他代码一样也可以运行。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

Dreamweaver Mac version
Visual web development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

Zend Studio 13.0.1
Powerful PHP integrated development environment
