Mongodb Find Is Not Working With The Objectid
Solution 1:
Your webpageids are strings while the _ids that you are searching with are ObjectIds. Your find does not match any results because there are no documents in the results table which have ObjectId values for the "webpageid" element.
There are two solutions as I see it.
- You could store ObjectIds instead of strings for the
webpageid
element in theresults
collection. The implementation of this is of course based on how those documents get into the collection. You could create a string variable from the returned ObjectId within the loop to compare instead. For example,
... for(var i = 0; i < docs.length; i++) { var docId = docs[i]._id.toString(); // create a string db.get('results').findOne({'webpageid':docId}, function(err, doc) ...
If you go with the second option, you may need to look into why there is a leading quote at the beginning of the webpageid
value for the second document in the results
collection.
"webpageid" : "\"54960a916ecb16dc3c4880e8"
Lastly, I don't know much about your requirements, but you may want to rethink MongoDB as a solution. It appears that you are creating something like a JOIN which is something MongoDB is not designed to handle very well.
Post a Comment for "Mongodb Find Is Not Working With The Objectid"