MongoDB shell的语言基于Javascript。在以下示例中,
> document = ({"Type": "Book", "Title" : "Definitive Guide to MongoDB 3rd ed., The",
"ISBN" : "978-1-4842-1183-0", "Publisher" : "Apress", "Author" : ["Hows, David", "Plugge,
Eelco", "Membrey, Peter", "Hawkins, Tim"] } )
> db.media.insertOne(document)
WriteResult({ "nInserted" : 1 })
第一个作业在Java的node
中也有效。
这样分配中的()
,{}
,:
和[]
的含义是从Javascript继承的,对吗?
如果它们来自Javascript,分别表示什么?
谢谢。