我看到了官方文件here:
var thingSchema = new Schema({..}, { timestamps: { createdAt: 'created_at' } });
var Thing = mongoose.model('Thing', thingSchema);
var thing = new Thing();
thing.save(); // `created_at` & `updatedAt` will be included
在mongoDB中,日期看起来像这样:
我的问题是:
1)这是将日期另存为DB中的Date对象的最佳实践吗?从兼容性和易用性的角度来看?以前我听说应该是从1970.01.01起的所有毫秒数
2)如果可能,如何设置选项以毫秒为单位存储时间戳而不是Date对象?