If the user type "word1" in the form field of var1, I would like to do a query in the database considering the word1 + "word99"(as standard search), how can I do that considering my code bellow?
I am new in django.
Thanks a lot for the help
def qrs_table(request):
form = MyForm()
query = {}
if request.GET.get('Var1'):
query['Var1'] = request.GET.get('Var1')
if request.GET.get('Var2'):
query['Var2'] = request.GET.get('Var2')
results = Model.objects.filter(**query).distinct()
qrs_table = MyTable(results)
return render(request, 'app/page.html', {'form': form, 'qrs_table': qrs_table})
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…