web进阶面试题库Ajax

web进阶之二十七:json、ajax、jsonp

2018-10-08  本文已影响10人  甚得朕心

json

  json是 JavaScript Object Notation 的首字母缩写,单词的意思是javascript对象表示法,这里说的json指的是类似于javascript对象的一种数据格式,目前这种数据格式比较流行,逐渐替换掉了传统的xml数据格式。

var tom = {
name:'tom',
age:18
}

{
"name":'tom',
"age":18
}

与json对象不同的是,json数据格式的属性名称需要用双引号引起来,用单引号或者不用引号会导致读取数据错误。

['tom',18,'programmer']

ajax与jsonp

  ajax技术的目的是让javascript发送http请求,与后台通信,获取数据和信息。ajax技术的原理是实例化xmlhttp对象,使用此对象与后台通信。ajax通信的过程不会影响后续javascript的执行,从而实现异步。

XMLHttpRequest cannot load https://www.baidu.com/. No
'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'null' is therefore not allowed access.

$.ajax使用方法

常用参数:
1、url 请求地址
2、type 请求方式,默认是'GET',常用的还有'POST'
3、dataType 设置返回的数据格式,常用的是'json'格式,也可以设置为'html'
4、data 设置发送给服务器的数据
5、success 设置请求成功后的回调函数
6、error 设置请求失败后的回调函数
7、async 设置是否异步,默认值是'true',表示异步

以前的写法:

$.ajax({
url: 'js/user.json',
type: 'GET',
dataType: 'json',
data:{'aa':1}
success:function(data){
......
},
error:function(){
alert('服务器超时,请重试!');
}
});
新的写法(推荐):

$.ajax({
url: 'js/user.json',
type: 'GET',
dataType: 'json',
data:{'aa':1}
})
.done(function(data) {
......
})
.fail(function() {
alert('服务器超时,请重试!');
});

jsonp

ajax只能请求同一个域下的数据或资源,有时候需要跨域请求数据,就需要用到jsonp技术,jsonp可以跨域请求数据,它的原理主要是利用了script标签可以跨域链接资源的特性。

<script type="text/javascript">
    function aa(dat){
        alert(dat.name);
    }
</script>
<script type="text/javascript" src="....../js/data.js"></script>

页面上定义一个函数,引用一个外部js文件,外部js文件的地址可以是不同域的地址,外部js文件的内容如下:

aa({"name":"tom","age":18});
外部js文件调用页面上定义的函数,通过参数把数据传进去。


实例代码

ajax的简单书写

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>ajax</title>
    <style type="text/css">
        
    </style>
    <script type="text/javascript" src="js/jquery-1.12.4.min.js"></script>
    <script type="text/javascript">
        $.ajax({
            url: './json.json',//请求的服务器的路径,实际开发中,用于写文档接口,如果是当前目录一定要加./
            // type: 'default GET (Other values: POST)',//请求的方式
            /*小型数据,切安全系数不需要很高的用get
                大型数据,且安全系数高的,用post*/
            type: 'get',
            // dataType: 'default: Intelligent Guess (Other values: xml, json, script, or html)',//访问的数据类型是什么类型
            dataType: 'json',
            // data: {param1: 'value1'},//携带的参数
        })
        // .done(function() {//成功时候要执行什么,可以写一个相应的函数
        //  console.log("success");
        // })
        .done(function(data) {//成功时候要执行什么
            console.log(data[0].name);
        })
        .fail(function() {//失败的时候要执行的
            console.log("error");
        })
        .always(function() {//无论成功与否,都要执行。
            console.log("complete");
        });
        
    </script>
</head>
<body>
    
</body>
</html>
上一篇下一篇

猜你喜欢

热点阅读