Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
294 views
in Technique[技术] by (71.8m points)

2 words queryset request in Django for the same variable

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...