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.
我想知道为什么以下不是有效的 json
{ test : event}
但
{ "test" : "event" }
是有效的吗?
因为在 JSON 中,字段是用引号声明的(所以 it's"test"和 not test),并且字段可以存储的唯一数据类型是:数字、字符串、布尔值、数组、对象(即另一个 JSON 对象)或 null。event不是这些东西,而是"event"一个字符串,它是一个有效的值类型。这些只是 JSON 的规则。
"test"
test
event
"event"
您应该阅读 JSON。