1. JSON (Javascript object notation) : javascript 对象表示法
2. json 文本的 mime类型(multiple internet mail extention) : application/json
3. json的key必须是字符串, 最好用 双引号 引起来
4. 基于rest风格的开发 , 前端通过ajax请求提交一个 json格式的字符串 , 后台以@requestBody 接收一个json对象
5. 所有浏览器将localStorage的值类型限定为string类型, json数据需要转换(所以localStorage 本质上是对字符串的读取)
5. json字符串和json对象的相互转换
let jsonStr = '{"name : "jk", "birth": 1997}' let jsonObj = {"name":"nora", "birth": 1995} console.log(typeOf (jsonStr, jsonObj)) // string object Json.stringify(jsonObj) Json.parse(jsonStr)