如何在猫鼬5中使用毫厘秒作为默认时间戳

时间:2018-09-02 17:17:17

标签: mongodb mongoose

我看到了官方文件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中,日期看起来像这样:

enter image description here

我的问题是:

1)这是将日期另存为DB中的Date对象的最佳实践吗?从兼容性和易用性的角度来看?以前我听说应该是从1970.01.01起的所有毫秒数

2)如果可能,如何设置选项以毫秒为单位存储时间戳而不是Date对象?

0 个答案:

没有答案