为什么在console中打印猫鼬的模型对象时会看到额外的字段。我正在将节点JS与猫鼬一起使用。我如何隐藏这些属性

问题描述 投票:1回答:1
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测试了相同的代码。

如何摆脱这些领域。

javascript node.js mongodb express mongoose
1个回答
-1
投票

伙计,我知道这不是答案,而且由于@qudirumar不被说服(请阅读问题下方的评论)。我要在此处发布图片,并尽快将其删除。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.