This time I will bring you a practical summary of Ajax and jsonp in the project. What are the precautions when using Ajax and jsonp? Here are practical cases, let’s take a look.
Foreword: ajax and jsonp can communicate with the background to obtain data and information, but do not need to refresh the entire page to achieve partial refresh of the page.
1. ajax
•Definition: A technology that sends http requests for asynchronous communication with the background.
•Principle: Instantiate the xmlhttp object and use this object to communicate with the background.
Ajax’s same-origin policy:
•The page or resource requested by Ajax can only be a resource under the same domain, and cannot be a resource from other domains. This is based on security when designing Ajax. consider.
-------------------------------------------------- ------------------------------------
ajax method:
1. $.ajax({}):
•Common parameters: •url: request network address
•type: request method, default It is 'GET', commonly used 'POST'
•dataType: Set the returned data format, generally use json, it can also be html and jsonp;
•data: Set the data sent to the server
•.done (): Set the callback function after a successful request •.fail(): Set the callback function after a failed request
•async: Set whether it is asynchronous. The default value is 'true', which means Asynchronous
$(function () { $("input").click(function () { $.ajax({ url: "./data.json", type: "get", dataType: "json", }); .done(function(data) {//请求成功的回调函数 $("input").val(dat.name); }) .fail(function() { alert('服务器超时,请重试!'); }); }); }) ...... <p> <input> </p>Description: data represents the data returned by the background; the use of ajax needs to depend on the server environment.
2. $.get():
•$.get() method uses GET request to load data from the server; it is also a request data without refreshing. ajax method. •Parameters:•url: The URL to be accessed, which needs to follow the same-origin policy;
•data: The data sent to the server.
•function(data,status){}: Request the function to run successfully
•dataType: Request the
data type of the response.
//参考代码: $(function () { $("input").click(function () { $.get( "./data.json", function (data,status) { console.log(data.name); }, "json" ); }); }) ...... <p> <input> </p>•The parameters of the $.get() method are different from $.ajax(). The URL is a required parameter, and the other three are optional.
•Data is the returned data, status indicates the status of the request, generally including ""success", "error", "timeout", etc.
•If the datatype is jsonp, you can also request data across domains .
•No callback function for request failure
3. $.post()
•$.get() method uses POST request to load from the server. Data;•The method used is exactly the same as the $.get() method
4. $.load():
•Load from the server. Data, there is no need to specify datatype, the returned data will be automatically placed in the element.•Parameters:
•data: Requested parameters, optional;
•function(response,status,xhr): callback function for successful request.
$(function () { $("input").click(function () { $(".box").load( "./data.json", function (response,status) { console.log(data.name); } ); }); }) ...... <p> <input> </p><p></p>•The returned data will be placed in p;
•Data cannot be accessed across domains;
•response is returned. The data, status is the status of the request;
•There is no callback function for request failure.
4. getJSON()
•The method uses AJAX’s HTTP GET. Request to obtain JSON data.•Parameters:
•url: request URL, required parameters;
•data: data sent to the server;
•function(data, status,xhr): request Successful callback function
$(function () { $("input").click(function () { $.getJSON( "./data.json", function(data,status) { console.log(data.name); }, ); }); }) ...... <p> <input> </p>•The method directly obtains json data;•No return failed callback function;•The callback function is a named function, not an anonymous function ;
5. getScript()
•Method uses AJAX HTTP GET request to obtain and execute js code •Parameters:•url: Request URL, required parameters; •function(data,status): callback function for successful request
$(function () { $("input").click(function () { $.getScript( "./data.js", function(data,status) { console.log(data); }, ); }); }) ...... <p> <input> </p>•Return result data is js code;
•This method can be used to dynamically load js code
## 2. jsonp •定义:一种可以实现跨域发送http请求的数据通信格式,可以嵌在ajax中使用。 用法一:函数传参 说明:在外部定义一个data.js文件,这个文件的路径可以与当前页面不在同一个域下面。 data.js的内容: •将数据以页面定义的函数的参数的形式传递进去,从而获取数据。 •本质上可以将数据拆分,使得数据不用强制保存在同一个域名下。 用法二:利用ajax •data.js的内容和上面一样。 •使用ajax的方法本质上也是script标签可以跨域链接资源,不过jquery为其封装了相同的方法,看起来一样。 •以上代码的执行过程为:ajax通过jsonp技术跨域访问data.js文件,通过找到aa()方法将其参数传递给.done方法的data参数执行.done方法。 •目前这种方式仍然有其局限性,就是必须知道data.js文件的名字和定义的方法aa,如果在仅仅知道域名的情况下,需要另外的方法. 用法三 •通过浏览器查看每次输入关键字服务器发送回的数据包,找到js文件中header的地址以及相关的提交数据,发现key为word关键字,因此可以向服务器发送data数据。 相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章! 推荐阅读:
•原理:利用script标签可以跨域链接资源的特性。<script>
function aa(data){
console.log(data.name);
}
</script>
<script></script>
aa({
"data":{
"name":"xiaohong",
"age":"18"
}
})
$.ajax({
url:'...../data.js',//可以不是本地域名
type:'get',
dataType:'jsonp', //jsonp格式访问
jsonpCallback:'aa' //获取数据的函数
})
.done(function(data){
console.log(data.name);
})
.fail(function() {
alert('服务器超时,请重试!');
});
var $input = $("input");
$input.keyup(function () {
$.ajax({
url:'https://sug.so.360.cn/suggest?',//请求360搜索的联想数据
type:'get',
dataType:'jsonp', //jsonp格式访问
data: {word: $input.val()},
})
.done(function(data){
console.log(data);
})
.fail(function() {
alert('服务器超时,请重试!');
});
})
....
<input>
•服务器返回的数据会自动传给回调的匿名函数的参数data.
The above is the detailed content of Practical summary of Ajax and jsonp in projects. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


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

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

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),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
