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を独学していて、引用符なしでシェルにJSONを入力できることを発見しました。これは便宜上のものですか、それとも私が知らない JSON 標準はありますか?
MongoDB シェルで許可
{ A:2 }
. .find() は有効な JSON ドキュメントを返します { "A":"2" }
{ "A":"2" }
シェル入力からのEDIT正しい戻り値は次のようになります{ "A":2 }
{ "A":2 }
JSON有効
{ "A": "1" }