sql >> Databasteknik >  >> NoSQL >> MongoDB

Pymongo Regex $alla flera söktermer

Du bygger en sträng i din for-loop, inte en lista över re.compile objekt. Du vill:

collected_x = []                            # Initialize an empty list

for x in input:                             # Iterate over input
  collected_x.append(re.compile(x))         # Append re.compile object to list

collected_x_cut = collected_x[:-2]          # Slice the list outside the loop

cursor = db.collection.find({"key": {"$all": collected_x_cut}})

Ett enkelt sätt skulle vara att använda map för att bygga listan:

collected = map(re.compile, input)[:-2]
db.collection.find({"key": {"$all": collected}})

Eller en list comprehension :

collected = [re.compile(x) for x in input][:-2]
db.collection.find({"key": {"$all": collected}})



  1. $nin med $expr

  2. Hur använder man MongoDB-aggregation för paginering?

  3. MongoDB-projektets uppdaterade post i en kapslad array i findAndModify-frågan

  4. MongoDB $cmp