MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Pymongo Regex $ tutti i termini di ricerca multipli

Stai costruendo una stringa nel tuo ciclo for non un elenco di re.compile oggetti. Vuoi:

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}})

Un approccio semplice sarebbe usare map per costruire l'elenco:

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

Oppure una list comprehension :

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