加载中...

json


其中 Y=json

源代码下载: learnjson-cn.json

因为JSON是一个极其简单的数据交换形式,这个最有可能将会是曾经最简单 的Learn X in Y Minutes。

最纯正形式的JSON没有实际的注解,但是大多数解析器将会 接受C-风格(//, / /)的注解。为了这个目的,但是, 一切都将会是100%有效的JSON。幸亏,它是不言自明的。

  1. {
  2. "numbers": 0,
  3. "strings": "Hellø, wørld. All unicode is allowed, along with \"escaping\".",
  4. "has bools?": true,
  5. "nothingness": null,
  6. "big number": 1.2e+100,
  7. "objects": {
  8. "comment": "Most of your structure will come from objects.",
  9. "array": [0, 1, 2, 3, "Arrays can have anything in them.", 5],
  10. "another object": {
  11. "comment": "These things can be nested, very useful."
  12. }
  13. },
  14. "silliness": [
  15. {
  16. "sources of potassium": ["bananas"]
  17. },
  18. [
  19. [1, 0, 0, 0],
  20. [0, 1, 0, 0],
  21. [0, 0, 1, "neo"],
  22. [0, 0, 0, 1]
  23. ]
  24. ],
  25. "that was short": "And, you're done. You now know everything JSON has to offer."
  26. }

还没有评论.