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.
我正在自学 MongoDB,发现我可以在不带引号的情况下在 shell 中输入 JSON。这只是为了方便还是有我不知道的 JSON 标准?
允许在 MONGODB 外壳中
{ A:2 }
. .find() 确实返回了一个有效的 JSON 文档 { "A":"2" }
{ "A":"2" }
编辑从 shell 输入的正确返回将是{ "A":2 }
{ "A":2 }
JSON 有效
{ "A": "1" }
虽然 JSON 确实需要在对象键周围加上引号,但 JavaScript 本身不需要。MongoDB shell 使用 JavaScript 而不是纯 JSON。