如何更改猫鼬时间戳中的时区?在这里,我有我的工作模式:
型号.js:
const jobSchema = new Schema({
owner: {
type: Schema.ObjectId,
ref: 'User',
required: true
},
title: {
type: String
},
description: {
type: String
},
tag: {
type: String
},
....
}, {
timestamps: true,
toJSON: {
virtuals: true,
transform: (obj, ret) => { delete ret._id }
},
toObject: { virtuals: true }
})
时间的结果是:
"createdAt": "2019-01-21T04:35:20.076Z"
但我的精算时间是上午11点35分。
我想将时间戳时区更改为 GMT/UTC +7。可以这样做吗?如果可能,我该怎么做?谢谢。
MongoDB始终以UTC格式存储日期。但是,您可以自己将其转换为您的时区或猫鼬时区以转换本地时区的日期。