在Blogpost模型中定义。
schema.user = { type: mongoose.Types.ObjectId, ref: 'User' };
稍后在访问与模型匹配的文档时...
// Timestamp of when the user was created.
userDocument._id.getTimestamp();
// Different ObjectId, same value.
blogpostDocument.user.getTimestamp();
这些时间戳会相同吗?
我不只是自己测试它的原因是我正在极大地更改我的数据库模型以优化它们并添加新字段,而我还没有完成更改它们。因此,在更新所有文档以匹配新模型之前,我希望了解这个问题的含义。
谢谢!