RoboMongo 0.8.5插入日期时出错

时间:2015-06-08 19:39:52

标签: mongodb date robo3t

尝试了许多格式,例如:

manufactureDate : new Date("2009-8-2"),

manufactureDate : new Date(2009,8,2),

甚至

manufactureDate : new Date("Feb 8, 2009"),

每次验证都以:

结束
Unable to parse JSON

任何想法?

1 个答案:

答案 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命令

enter image description here

使用查询插入日期以运行此查询按(Insert documents...):

enter image description here

这将以ctrl + enter格式插入日期。