JSON
最后更新于:2022-04-01 10:30:38
## JSON(JavaScript Object Notation)
>JSON, 有时也称 JavaScript 对象表示, 是一种使用人类可读的文本传输由键值对组成的数据对象的开放格式. 对于异步浏览器/服务器通信(AJAJ), JSON 是主要的数据格式, 很大程度上代替了 XML(AJAX).
>尽管最初是从 JavaScript 脚本语言衍生而来, 但是 JSON 是语言无关性的数据格式, 在许多编程语言中, 代码解析和生成 JSON 是很容易的.
>JSON 的格式最初是由 Douglas Crockford 指定的, 但目前却被描述成两种标准: RFC 7159 和 ECMA-404. ECMA 标准只允许被合法的语法语句描述, 而 RFC 则提供了一些语义化描述和安全考虑. JSON 的官方网络媒体类型 application / JSON, 扩展名是 .json. - wikipedia.org
**综合学习:**
<ul>
<li><a href="https://www.json.com/" target="_blank">json.com</a> [read]</li>
<li><a href="https://mijingo.com/lessons/what-is-json/" target="_blank">What is JSON</a> [watch]</li>
<li><a href="http://www.amazon.com/Introduction-JavaScript-Object-Notation-Point/dp/1491929480/ref=pd_sim_sbs_14_1" target="_blank">Introduction to JavaScript Object Notation: A To-the-Point Guide to JSON</a> [read][$]</li>
</ul>
**参考/文档**
* [json.org/](http://json.org/) [read]
**标准/规范:**
<ul>
<li><a href="http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf" target="_blank">ECMA-404 The JSON Data Interchange Format</a></li>
<li><a href="https://tools.ietf.org/html/rfc7159" target="_blank">RFC 7159 The JavaScript Object Notation (JSON) Data Interchange Format</a></li>
</ul>
**架构设计:**
* [JSON API](http://jsonapi.org/)
**译者补充:**
* [JSON 系列文章](http://jaskokoyn.com/json-tutorial-series/)