使用mongoimport将日期(ISODate)导入MongoDB

时间:2015-10-13 15:55:49

标签: mongodb

我有这些MongoDB文档。在JSON中:

{
"attString":"hello World0",
"attInt":0,
"attDate":new Date("1990-7-20")
 }

如何使用mongoimport将此文档导入MongoDB?我对 attDate 字段有疑问。

这是MongoDB shell通知:

  

失败:文档#1上的错误解组字节:意外的ISODate   格式

1 个答案:

答案 0 :(得分:15)

您必须在JSON中更改日期格式

{"attString":"hello World0","attInt":0,"attDate":ISODate("2013-11-20T23:32:18Z")}

{"attString":"hello World0","attInt":0,"attDate":{$date:"2013-11-20T23:32:18Z"}} 

希望它会有所帮助