码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript JSON

时间:2016-04-20 21:59:22      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:

一、JSON 介绍

JSON: JavaScript Object Notation 
是一种轻量级的数据交换格式。 它基于ECMAScript的一个子集。 JSON采用完全独立于语言的文本格式,但是也使用了类似于C语言家族的习惯(包括C、C++、C#、Java、JavaScript、Perl、Python等)。这些特性使JSON成为理想的数据交换语言。
 
Because of this similarity, instead of using a parser (like XML does), a JavaScript program can use standard JavaScript functions to convert JSON data into native JavaScript objects. 
 
 
The JSON syntax is a subset of the JavaScript syntax.   JSON 语法是 JavaScript 语法的子集。 
JSON Uses JavaScript Syntax
Because JSON syntax is derived from JavaScript object notation, very little extra software is needed to work with JSON within JavaScript. 

JSON values can be:

A number (integer or floating point)
A string (in double quotes)
A Boolean (true or false)
An array (in square brackets)
An object (in curly braces)
null 
 

二、Javascript中的 JSON对象   MDN

The JSON object contains methods for parsing JavaScript Object Notation (JSON) and converting values to JSON. It can‘t be called or constructed, and aside from its two method properties it has no interesting functionality of its own.
两个方法:
1、    JSON.parse()        把JSON object 转化成 javascript中的 数值类型
2、    JSON.stringify()     恰好相反
 
 

JavaScript JSON

标签:

原文地址:http://www.cnblogs.com/oneplace/p/5414466.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!