Mongoose/MongoDB result fields appear undefined in

2020-01-25 01:10发布

Is there something that I'm missing that would allow item to log as an object with a parameter, but when I try to access that parameter, it's undefined?

What I've tried so far:

  • console.log(item) => { title: "foo", content: "bar" } , that's fine
  • console.log(typeof item) => object
  • console.log(item.title) => "undefined"

I'll include some of the context just in case it's relevant to the problem.

var TextController = function(myCollection) {
  this.myCollection = myCollection
}

TextController.prototype.list = function(req, res, next) {
  this.myCollection.find({}).exec(function(err, doc) {
    var set = new Set([])
    doc.forEach(function(item) {
      console.log(item)         // Here item shows the parameter
      console.log(item.title)   // "undefined"
      set.add(item.title)       
    })
    res.json(set.get());
  })
}

Based on suggestion I dropped debugger before this line to check what item actually is via the node repl debugger. This is what I found : http://hastebin.com/qatireweni.sm

From this I tried console.log(item._doc.title) and it works just fine.. So, this seems more like a mongoose question now than anything.

There are questions similar to this, but they seem to be related to 'this' accessing of objects or they're trying to get the object outside the scope of the function. In this case, I don't think I'm doing either of those, but inform me if I'm wrong. Thanks

10条回答
贼婆χ
2楼-- · 2020-01-25 01:37

You don't have whitespace or funny characters in ' title', do you? They can be defined if you've quoted identifiers into the object/map definition. For example:

var problem = {
    ' title': 'Foo',
    'content': 'Bar'
};

That might cause console.log(item) to display similar to what you're expecting, but cause your undefined problem when you access the title property without it's preceding space.

查看更多
该账号已被封号
3楼-- · 2020-01-25 01:38

Are you initializing your object?

function MyObject()
{
    this.Title = "";
    this.Content = "";
}

var myo1 = new MyObject();

If you do not initialize or have not set a title. You will get undefined.

查看更多
神经病院院长
4楼-- · 2020-01-25 01:39

Solution

You can call the toObject method in order to access the fields. For example:

var itemObject = item.toObject();
console.log(itemObject.title); // "foo"

Why

As you point out that the real fields are stored in the _doc field of the document.

But why console.log(item) => { title: "foo", content: "bar" }?

From the source code of mongoose(document.js), we can find that the toString method of Document call the toObject method. So console.log will show fields 'correctly'. The source code is shown below:

var inspect = require('util').inspect;

...

/**
 * Helper for console.log
 *
 * @api public
 */
Document.prototype.inspect = function(options) {
  var isPOJO = options &&
    utils.getFunctionName(options.constructor) === 'Object';
  var opts;
  if (isPOJO) {
    opts = options;
  } else if (this.schema.options.toObject) {
    opts = clone(this.schema.options.toObject);
  } else {
    opts = {};
  }
  opts.minimize = false;
  opts.retainKeyOrder = true;
  return this.toObject(opts);
};

/**
 * Helper for console.log
 *
 * @api public
 * @method toString
 */

Document.prototype.toString = function() {
  return inspect(this.inspect());
};
查看更多
倾城 Initia
5楼-- · 2020-01-25 01:39

If you only want to get the info without all mongoose benefits, save i.e., you can use .lean() in your query. It will get your info quicker and you'll can use it as an object directly.

https://mongoosejs.com/docs/api.html#query_Query-lean

As says in docs, this is the best to read-only scenarios.

查看更多
叛逆
6楼-- · 2020-01-25 01:42

Old question, but since I had a problem with this too, I'll answer it.
This probably happened because you're using find() instead of findOne(). So in the end, you're calling a method for an array of documents instead of a document, resulting in finding an array and not a single document. Using findOne() will let you get access the object normally.

查看更多
姐就是有狂的资本
7楼-- · 2020-01-25 01:43

Try performing a for in loop over item and see if you can access values.

for (var k in item) {
    console.log(item[k]);
}

If it works, it would mean your keys have some non-printable characters or something like this.

From what you said in the comments, it looks like somehow item is an instance of a String primitive wrapper.

E.g.

var s = new String('test');
typeof s; //object
s instanceof String; //true

To verify this theory, try this:

eval('(' + item + ')').title;

It could also be that item is an object that has a toString method that displays what you see.

EDIT: To identify these issues quickly, you can use console.dir instead of console.log, since it display an interactive list of the object properties. You can also but a breakpoint and add a watch.

查看更多
登录 后发表回答