Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道:
{ "name": "Mike", "age": 18 }
或者
[{"name": "Mike"},{"name": "Jeff"}]
是有效的 json。
但我不确定[1,2,3]是不是?
[1,2,3]
[1,2,3] 一个有效的 JSON 数组,但不是一个有效的 JSON 对象。对象必须采用 {...} 形式。
您的其他示例不是有效的 JSON。字符串必须用双引号。你修好了。