MongoDB的。属性名称

时间:2016-03-05 22:00:03

标签: arrays mongodb collections insert database

嗨,我有书籍收藏,我想在其中插入一系列文件:

> db.book.insert({[ {x:null},{y:true},{a:3.23},{b:'abc'},
  {c:new Date()},{d:[1,2,3]}, {f:1} ]})

它给了我这个错误:

2016-03-06T00:53:58.893+0300 E QUERY    
[thread1] **SyntaxError: missing ] in computed property name @(shell):1:27**

看不到丢失的']' ,我的错是什么?

我想同时添加7个文档。

我需要在数组中包含所有文档,对吧? .insert({[...]})

如您所见,文档' 也是一个数组。

1 个答案:

答案 0 :(得分:1)

通过删除'()'中的'{}'来解决:

最终结果:

stop