How can I do something like this :
products_list = Product.objects.all()
for key in keywords:
products_list = products_list.filter(name__icontains=q)
This don’t work.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You are filtering the list with several AND statements, and you want OR statements. Try something like this:
You could probably clean up the above code, but the idea is to create a variable called
orqthat is basicallyQ(name__icontains='prod1') | Q(name__icontains='prod2').