Home Web Front-end JS Tutorial Implementation method of using jsonp cross-domain access under jquery_jquery

Implementation method of using jsonp cross-domain access under jquery_jquery

May 16, 2016 pm 06:22 PM
jsonp Cross-domain access

Copy code The code is as follows:

$.ajax({
async:false,
url: '', // Cross-domain URL
type: 'GET',
dataType: 'jsonp',
jsonp: 'jsoncallback', //Default callback
data: mydata, // Request data
timeout: 5000,
beforeSend: function(){ //jsonp method is not triggered. The reason may be that if dataType is specified as jsonp, it is no longer an ajax event.
},
success: function (json) { //The callback function predefined by jquery on the client side. After successfully obtaining the json data on the cross-domain server, this callback function will be dynamically executed
if(json.actionErrors.length!= 0){
alert(json.actionErrors);
}

},
complete: function(XMLHttpRequest, textStatus){

},
error: function(xhr){
//Jsonp mode this method is not triggered
//Request error handling
alert("Request error (please check the correlation network status.)");
}
});



Copy code The code is as follows:

$.getJSON(url "?callback=?",
function(json){

});

This method is actually the above example A high-level wrapper for $.ajax({..}).

On the server side, get the callback parameter (such as: jsonp*****) to get the subsequent callback on the jQuery side
and then return something like: "jsonp*****(" the json to be returned Array ")";
jquery will dynamically load and call this through the callback method: jsonp*****(json array);
This achieves the purpose of cross-domain data exchange.

JSONP is a kind of script injection (Script Injection) behavior, so it also has certain security risks.

Note: jquey does not support cross-domain posting.
Reference:http://www.ibm.com/developerworks/cn/web/wa-aj-jsonp1/
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use Nginx Proxy Manager to implement authorization management of cross-domain access How to use Nginx Proxy Manager to implement authorization management of cross-domain access Sep 27, 2023 pm 04:43 PM

How to use NginxProxyManager to implement authorization management of cross-domain access. NginxProxyManager is a powerful proxy server that can implement reverse proxy, load balancing, SSL/TLS terminal proxy and other functions. In practical applications, we often encounter problems with front-end cross-domain access. In order to protect back-end resources, we need to perform authorization management. This article will introduce how to use NginxProxyManager to implement authorization management of cross-domain access and provide

How to use JSONP to implement cross-domain requests in Vue How to use JSONP to implement cross-domain requests in Vue Oct 15, 2023 pm 03:52 PM

Introduction to how to use JSONP to implement cross-domain requests in Vue. Due to the restrictions of the same-origin policy, the front-end will be hindered to a certain extent when making cross-domain requests. JSONP (JSONwithPadding) is a cross-domain request method. It uses the characteristics of the <script> tag to implement cross-domain requests by dynamically creating the <script> tag, and passes the response data back as a parameter of the callback function. This article will introduce in detail how to use JSONP in Vue

How to solve cross-domain access issues in Java How to solve cross-domain access issues in Java Oct 11, 2023 am 08:01 AM

How to solve cross-domain access problems in Java When developing web applications using Java, we often encounter cross-domain access problems. Cross-domain access means that the resources requested by the client come from different domains, for example, the resources of domain2.com are requested from the web page of www.domain1.com. Due to the restrictions of the same-origin policy, such cross-domain requests are not allowed. This article will introduce several methods to solve cross-domain access problems in Java and provide specific code examples. Method 1: Use Filter

Cross-domain access configuration and CORS protocol support guide for setting up Nginx server Cross-domain access configuration and CORS protocol support guide for setting up Nginx server Aug 04, 2023 pm 10:57 PM

Cross-domain access configuration and CORS protocol support guide for building Nginx servers Introduction: In current web application development, cross-domain requests have become a common requirement. To ensure security, browsers restrict cross-domain operations through AJAX requests by default. The CORS (Cross-Origin Resource Sharing) protocol provides developers with a reliable solution to achieve controllable authorization of cross-domain access. Nginx is a high-performance web server and reverse proxy server. This article will introduce how to use Nginx to build

PHP communication: How to achieve cross-domain data transmission? PHP communication: How to achieve cross-domain data transmission? Aug 20, 2023 am 11:17 AM

PHP communication: How to achieve cross-domain data transmission? Introduction: In web development, it is often necessary to realize data transmission between different domain names, which requires cross-domain communication. This article will introduce how to use PHP language to achieve cross-domain data transmission, and attach code examples. 1. What is cross-domain communication? Cross-domain communication refers to the process of data transmission between different domain names in web development. Typically, browsers prevent pages from sending requests or receiving responses to servers in different domains due to limitations of the same-origin policy. Therefore, in order to implement between different domains

How to use JSONP for cross-domain requests in Vue projects How to use JSONP for cross-domain requests in Vue projects Oct 15, 2023 am 10:07 AM

How to use JSONP for cross-domain requests in the Vue project Introduction: In the Vue project, sometimes you will encounter situations where you need to obtain data from different domain names, such as obtaining data by calling a third-party API. In general, due to the different browsers, Source policy, direct cross-domain requests are prohibited. But in some cases, we can use JSONP technology to implement cross-domain requests. This article will introduce how to use JSONP to make cross-domain requests in the Vue project and give specific code examples. 1. How JSONP works

How jsonp solves cross-domain problems How jsonp solves cross-domain problems Nov 29, 2023 am 10:18 AM

JSONP is a technology that enables cross-domain requests by dynamically creating <script> tags. The steps are as follows: 1. Create a callback function in the client page, which is used to process the data returned from the server; 2. Dynamically create a <script> tag, set its src attribute to the URL of the target server, and add it in the URL Pass a parameter in, which is the name of the callback function; 3. After the server receives the request, it wraps the data in the callback function in the returned data and returns it to the client, etc.

How API handles JSONP and cross-site requests in PHP How API handles JSONP and cross-site requests in PHP Jun 17, 2023 am 10:37 AM

As more and more web applications begin to support cross-site requests and JSONP technology, API designers in PHP must consider how to handle these requests. In this article, we will explore how to handle JSONP and cross-site requests in PHP. First, let's take a look at JSONP. JSONP (JSONwithPadding) is a technology that allows cross-domain requests for data between clients and servers. It is done by using JavaScript code to dynamically create a &lt;

See all articles