I have the following code:
collection.find({title:"foo"}, {title:1, _id:0})
that returns
{title: "foo"}
but when I try:
str = "foo";
collection.find({title:str}, {title:1, _id:0})
I don't get any results back.
All of the examples I've found on stackoverflow use hardcoded strings. How can I search for a string that's changning within a mongodb database?
Aucun commentaire:
Enregistrer un commentaire