learnxinyminutes-docs/zh-cn/json-cn.html.markdown

61 lines
1.5 KiB
JSON
Raw Normal View History

2014-05-31 12:15:30 +04:00
---
language: json
contributors:
- ["Anna Harren", "https://github.com/iirelu"]
translators:
- ["Zach Zhang", "https://github.com/checkcheckzz"]
filename: learnjson-cn.json
lang: zh-cn
---
JSON
Learn X in Y Minutes
2014-05-31 12:15:30 +04:00
JSON
C-(//, /\* \*/)的注释。为了兼容性,最好不要在其中写这样形式的注释。
100%JSON
- : "hello", "\"A quote.\"", "\u0abe", "Newline.\n"
- : 23, 0.11, 12e10, 3.141e-10, 1.23e+4
- : { "key": "value" }
- : ["Values"]
- : true, false, null
2014-05-31 12:15:30 +04:00
```json
{
"numbers": 0,
"strings": "Hellø, wørld. All unicode is allowed, along with \"escaping\".",
"has bools?": true,
"nothingness": null,
"big number": 1.2e+100,
"objects": {
"comment": "Most of your structure will come from objects.",
"array": [0, 1, 2, 3, "Arrays can have anything in them.", 5],
"another object": {
"comment": "These things can be nested, very useful."
}
},
"silliness": [
{
"sources of potassium": ["bananas"]
},
[
[1, 0, 0, 0],
[0, 1, 0, 0],
[0, 0, 1, "neo"],
[0, 0, 0, 1]
]
],
2014-06-14 06:10:37 +04:00
"that was short": "And, you're done. You now know everything JSON has to offer."
2014-05-31 12:15:30 +04:00
}
```