4

我的 node.js 应用程序中的 javascript 中有以下代码。但是某些对象没有存储在我的变量appointment中。即使我设置了它们,当我直接访问它们时它也可以工作:console.log(appointment.test);

我在这段代码中做错了什么?

var appointment = {
    subscribed: false,
    enoughAssis: false,
    studentSlotsOpen: false
};
console.log(appointment);
for (var key in appointmentsDB[i]) {
    appointment[key] = appointmentsDB[i][key];    
}

appointment.test= "res";

console.log(appointment.test);
console.log(appointment);

这是产生的输出:

{ subscribed: false,
  enoughAssis: false,
  studentSlotsOpen: false }
res
{ comment: 'fsadsf',
  room: 'dqfa',
  reqAssi: 3,
  maxStud: 20,
  timeSlot: 8,
  week: 31,
  year: 2013,
  day: 3,
  _id: 51f957e1200cb0803f000001,
  students: [],
  assis: [] }

该变量console.log(appointmentsDB[i])如下所示:

{ comment: 'fsadsf',
  room: 'dqfa',
  reqAssi: 3,
  maxStud: 20,
  timeSlot: 8,
  week: 31,
  year: 2013,
  day: 3,
  _id: 51f957e1200cb0803f000001,
  students: [],
  assis: [] }

以下命令:

console.log(Object.getOwnPropertyNames(appointmentsDB[i]), Object.getOwnPropertyNames(Object.getPrototypeOf(appointmentsDB[i])));

显示:

[ '_activePaths',
  '_events',
  'errors',
  '_maxListeners',
  '_selected',
  '_saveError',
  '_posts',
  'save',
  '_pres',
  '_validationError',
  '_strictMode',
  'isNew',
  '_doc',
  '_shardval' ] [ 'assis',
  'timeSlot',
  'db',
  '_schema',
  'id',
  'base',
  'day',
  'collection',
  'reqAssi',
  'constructor',
  'comment',
  'year',
  'room',
  'students',
  'week',
  '_id',
  'maxStud' ]

但是,我希望我的最后一个输出还提供条目 test、subscribed、 enoughAssis 和 studentSlotsOpen。这段代码有什么问题?

我找到的解决方案是手动复制我想要的元素。

4

1 回答 1

5

您可能有一个Document 对象而不是一个普通对象。那些有一个自定义toJSON方法,它只产生你的模式和的属性_id,但没有别的。如果您使用 for-in-loop 将该方法复制到appointment对象上,则在记录时它也会以不同的方式进行序列化。

尝试

for (var key in appointmentsDB[i].toObject()) {
    appointment[key] = appointmentsDB[i][key];    
}

appointment.test= "res";

console.log(appointment);
于 2013-07-31T20:24:50.810 回答