2 words queryset request in Django for the same variable

♀尐吖头ヾ 提交于 2019-12-11 14:39:23

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!