Blogger Information
Blog 45
fans 0
comment 1
visits 33024
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
异步方式获取服务器JSON格式数据
源逸
Original
826 people have browsed it
  1. JSON格式字符串创建方式支持的数据类型有:基本类型:String,Number,Boolean,Null,复合类型:Object,Array

  2. JSON中必须使用双引号作为属性定界符,布尔值和数值型不用双引号

  3. 注意:

    3.1)json的值必须是字面量形式,不允许使用变量或其他方式

    3.2)json不允许直接写注释,除非使用第三方插件

    3.3)json的文本后缀名为.json

    3.4)json文本的MIME类型是:application/json

  4. JSON格式字符串转为js对象使用:JSON_parse()

  5. js对象序列化为JSON格式字符串使用:JSON_stringify()

  6. js对象转为多行字符串使用反引号:就是键盘右上角ESC下面的按键


  7. 实例

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>以异步方式获取服务器返回的JSON格式字符串数据渲染到页面(2019.05.16示例)</title>
    </head>
    <body>
    <button>获取数据</button>
    <h3></h3>
    <script>
        var but = document.getElementsByTagName('button').item(0);
        var request = new XMLHttpRequest();
        but.addEventListener('click',show,false);
        
        function show() {
            //添加事件监听函数:readystatechange
            request.addEventListener('readystatechange',getData,false);
            request.open('get','admin/demo1.php',true);
            request.send(null);
        }
        
        function getData() {
            if(request.readyState === 4){
                var h3 = document.getElementsByTagName('h3').item(0);
                //将服务器返回的JSON格式字符串转为:js对象来使用,JSON_parse()
                var obj = JSON.parse(request.responseText);
                console.log(obj);
                h3.innerHTML = obj.name + ',PHP的成绩是:' + obj.grade.php;
            }
        }
    </script>
    </body>
    </html>

    运行实例 »

    点击 "运行实例" 按钮查看在线实例

    php源码:


  8. 实例

    <?php
    
    $json = '{
        "name": "小金莲",
        "age": 23,
        "isMarried": true,
        "sweetheart": null,
        "grade": {
            "javascript": 80,
            "php": 90
        },
        "hobby": ["做烧饼", "下毒", "饮酒作乐"]
    }';
    
    echo $json;

    运行实例 »

    点击 "运行实例" 按钮查看在线实例

    效果图:

    QQ图片20190604211238.png

Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post