问题
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})
来源:https://stackoverflow.com/questions/47371941/2-words-queryset-request-in-django-for-the-same-variable