在控制台中查询时发现有点奇怪,我在mongo中保存的日期表示它们属于无效日期类型。
我正在使用集合2并为mongo定义架构,如下所示:
createdAt: {
type: Date,
autoValue: function() {
if (this.isInsert) {
return new Date();
} else if (this.isUpsert) {
return { $setOnInsert: new Date() };
} else {
this.unset();
}
}
},
为什么会无效?它应该无效吗?