繁体   English   中英

为什么在控制台中打印猫鼬的模型对象时会看到额外的字段。 我正在使用带有猫鼬的节点 JS。 我怎样才能隐藏这些属性

[英]Why I am seeing extra fields when printing the model object of mongoose in console . I am using node JS with mongoose. How can i hide these attribute

const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/playgroundDB')
.then(()=>console.log('Connected to Mongo DB....'))
.catch(( err)=>console.log('Could not connect to MongoDb', err));


const courseSchema = new mongoose.Schema({
    name : String,
    author : String,
    tags :[String],
    date:{ type: Date, default:Date.now},
    isPublished: Boolean
});


const Course= mongoose.model('Course', courseSchema);

const course = new Course({
    name : "xxxx",
    author : 'rahul123',
    tags :['Frontend', 'Backend'] ,
    isPublished : true
});

course.save().then(res=>console.log(res)).catch(err=> console.log(err));

当我执行上面的代码时。 我的数据被保存在 db 中,当我使用(res=>console.log(res))打印它时,我在控制台中看到了额外的字段。

下面是我在控制台中的输出

 model {
      '$__': InternalCache {
        strictMode: true,
        selected: undefined,
        shardval: undefined,
        saveError: undefined,
        validationError: undefined,
        adhocPaths: undefined,
        removing: undefined,
        inserting: true,
        version: undefined,
        getters: {},
        _id: 5dea6a7256bf9212c81361a9,
        populate: undefined,
        populated: undefined,
        wasPopulated: false,
        scope: undefined,
        activePaths: StateMachine {
          paths: {},
          states: [Object],
          stateNames: [Array],
          forEach: [Function],
          map: [Function]
        },
        pathsToScopes: {},
        ownerDocument: undefined,
        fullPath: undefined,
        emitter: EventEmitter {
          _events: [Object: null prototype] {},
          _eventsCount: 0,
          _maxListeners: 0
        },
        '$options': true
      },
      isNew: false,
      errors: undefined,
      _doc: {
        tags: [
          'Frontend',
          'Backend',
          toBSON: [Function: toBSON],
          _atomics: {},
          _parent: [Circular],
          _cast: [Function: _cast],
          _markModified: [Function: _markModified],
          _registerAtomic: [Function: _registerAtomic],
          '$__getAtomics': [Function: $__getAtomics],
          hasAtomics: [Function: hasAtomics],
          _mapCast: [Function: _mapCast],
          push: [Function: push],
          nonAtomicPush: [Function: nonAtomicPush],
          '$pop': [Function: $pop],
          pop: [Function: pop],
          '$shift': [Function: $shift],
          shift: [Function: shift],
          pull: [Function: pull],
          splice: [Function: splice],
          unshift: [Function: unshift],
          sort: [Function: sort],
          addToSet: [Function: addToSet],
          set: [Function: set],
          toObject: [Function: toObject],
          inspect: [Function: inspect],
          indexOf: [Function: indexOf],
          remove: [Function: pull],
          _path: 'tags',
          isMongooseArray: true,
          validators: [],
          _schema: [SchemaArray]
        ],
        date: 2019-12-06T14:49:22.524Z,
        _id: 5dea6a7256bf9212c81361a9,
        name: 'xxxx',
        author: 'rahul123',
        isPublished: true,
        __v: 0
      }
    }

正如您在上一节中看到的,我在上一节中看到了我保存的数据。 但为什么我会看到这么多额外的属性。 我已经用 Mongo DB version 3.6.164.2测试了相同的代码。

我怎样才能摆脱这些领域。

我遇到过同样的问题。 解决这个问题的干净方法是在控制台语句中添加toObject() ,如下所示:

(res=>console.log(res.toObject()))

这应该删除多余的不需要的字段。

尝试:

console.log(JSON.stringify(res));

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM