在没有子字段属性的mongoose中读取文档的子字段将返回一个空对象

时间:2017-05-04 19:51:36

标签: javascript node.js mongodb mongoose

我的集合测试模式嵌套如下:

dbs.Test.find({})exec().then(function(collection){ ...

我找了一个像:

var field = collection[0];
field.name // returns name
field.subField // console.log is an empty object

它返回所有文件。然后我访问一个具有名称但没有subField名称的字段。

object

它在控制台中返回一个空对象。我以为它会为null / undefined。如果field.subField没有subField名称,它实际返回什么内容?

0 个答案:

没有答案