


Implementation method of using jsonp cross-domain access under jquery_jquery
$.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.)");
}
});
$.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/

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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 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 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? 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 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

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.

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 <
