Blogger Information
Blog 25
fans 0
comment 0
visits 42125
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Json的概念与Json对象的写法,Json对象与Json字符串转换
程先生的博客
Original
875 people have browsed it

本文核心内容:Json的概念与Json对象的写法,Json对象与Json字符串转换。

Json 简介

JSON:JavaScript 对象表示法(JavaScript Object Notation)。

JSON 是存储和交换文本信息的语法。类似 XML。JSON 比 XML 更小、更快,更易解析。

JSON 语法规则

JSON 语法是 JavaScript 对象表示法语法的子集。

·数据在名称/值对中

·数据由逗号分隔

·花括号保存对象

·方括号保存数组

JSON 值

JSON 值可以是:

·数字(整数或浮点数)

·字符串(在双引号中)

·逻辑值(true 或 false)

·数组(在方括号中)

·对象(在花括号中)

·Null

一:Json字符串----->Json对象

源代码:

window.onload=function (){

    var jsonStr = '{"name":"Jane","age":23,"email":"love_ljy@163***"}';

    //方法一  :Json.parse()

    var json = JSON.parse(jsonStr);

    //方法二    :eval();

    var json2 = eval ("(" + jsonStr + ")");

    alert(json.email);

}

   

二:Json对象------>Json字符串

使用JSON.stringify();

源代码:


window.onload=function (){

    var json = {name: "Jane", age: 23, email: "love_ljy@163***"};

    var jsonStr = JSON.stringify(json);

    alert(jsonStr);

}

   


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