sql >> Databasteknik >  >> NoSQL >> MongoDB

hur man hittar specifik sträng i nyckelvärdespar i mongodb

Använda regex med mongodb

Detta fungerade för mig

db.collection.find({"product":/laptop/})

Uppdaterat svar

Om du vill använda variabler, prova något i stil med detta:

var abc = "laptop";
// other stuff
userdetails.find({"product":new RegExp(abc)}).toArray(function(err,result){
  if (err) console.log ("error: "+err);
  else 
  {    
    // if you want the length
    console.log(result.length);
    // if you actually want to see the results
    for (var i = 0; i < result.length; i++)
    {
      console.log(result[i]);
    }
  }
}); 

Uppdaterat en gång till

var abc = "laptop";
// other stuff

// note this is case sensitive.  if abc = "Laptop", it will not find it
// to make it case insensitive, you'll need to edit the RegExp constructor
// to this: new RegExp("^"+abc+",|, "+abc+"(?!\w)", "i")

userdetails.find({"product":new RegExp("^"+abc+",|, "+abc+"(?!\w)")}).toArray(function(err,result){
  if (err) console.log ("error: "+err);
  else 
  {    
    // if you want the length
    console.log(result.length);
    // if you actually want to see the results
    for (var i = 0; i < result.length; i++)
    {
      console.log(result[i]);
    }
  }
}); 


  1. sailsjs använder mongodb utan ORM

  2. Finns det något sätt att köra MongoDB-skal (eller tojson-metoden) i strikt JSON-läge?

  3. DB.eval() med Mongo Java-drivrutin

  4. slå upp i mongodb-aggregation