尝试了许多格式,例如:
manufactureDate : new Date("2009-8-2"),
或
manufactureDate : new Date(2009,8,2),
甚至
manufactureDate : new Date("Feb 8, 2009"),
每次验证都以:
结束Unable to parse JSON
任何想法?
答案 0 :(得分:8)
在robomongo
中右键单击集合名称并单击Insert documents...
新弹出窗口打开,如果您按下面插入dates
并单击保存按钮,则会显示错误{ {1}}因为Unable to parse JSON
在插入文档视图中无法理解robomongo
函数。这被视为new Date()
和JSON
不是有效的{manufactureDate : new Date(2009,8,2)}
格式。因此,不要使用JSON
插入dates
,而是使用direct mongo命令
使用查询插入日期以运行此查询按(Insert documents...
):
这将以ctrl + enter
格式插入日期。