gpt4 book ai didi

node.js - Mongoose 不断给 _id 和 id 相同的值

转载 作者:行者123 更新时间:2023-12-05 02:20:42 24 4
gpt4 key购买 nike

我有一些 Mongoose 模式,其某些字段需要 getter 和 setter。

为此,我设置了以下内容:

MySchema.set('toObject',{getters:true});
MySchema.set('toJSON',{getters:true});

每当我发送/读取 MySchema.find() 的结果时,它都会给我 _idid 字段,它们具有相同的值(value)。我认为那是一个虚拟领域(如果我在这里错了请纠正我)

我该如何阻止它?我不想处理每个对象并删除该字段。

最佳答案

Documented here :

Mongoose assigns each of your schemas an id virtual getter by default which returns the documents _id field cast to a string, or in the case of ObjectIds, its hexString. If you don't want an id getter added to your schema, you may disable it passing this option at schema construction time.

只需在创建模式时将 id 字段设置为 false:

var schema = new Schema({ name: String }, { id: false });

关于node.js - Mongoose 不断给 _id 和 id 相同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38120395/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com