我有这些MongoDB文档。在JSON中:
{
"attString":"hello World0",
"attInt":0,
"attDate":new Date("1990-7-20")
}
如何使用mongoimport
将此文档导入MongoDB?我对 attDate 字段有疑问。
这是MongoDB shell通知:
失败:文档#1上的错误解组字节:意外的ISODate 格式
答案 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"}}
希望它会有所帮助