如何将表单提交重定向到另一个视图

时间:2018-12-10 02:17:41

标签: python django forms url

我有以下django表单,用户将使用该表单输入查询并选择模型以搜索特定查询:

from django import forms
class search_forms(forms.Form):

    search_query = forms.CharField(label='search_query')
    path_choices =  [('urlpath1/','model name 1'),
    ('urlpath2/','model name 2')...]
    model_paths = forms.ChoiceField(label='model_paths',choices=path_choices)

此表单用于填充模板,该模板由文本输入字段(供用户提交查询)和下拉字段(用于确定查询应定向到的模型)组成(forms.py中的path_choices变量)

thew views.py如下,需要以某种方式更改为以下内容:

def search(request):
    if request.method == 'GET':
        form = search_forms(request.GET)
        if form.is_valid():
            return render(request, 'template_for_model_paths.html', {'form': form, 's_results': s_results})
    else:
        form = search_forms()
    return render(request, 'search.html', {'form': form,})

当前,表单模板产生的GET结果如下:/ search?search_query = QUERY&model_paths = model_path%2F

我想完成的是:作为结果的model_path / Query,我可以将其反馈给搜索表单的视图,并使用它来重定向与model_path相关的视图。

我应该如何做到这一点?这种方法有意义吗?还是我误用了表单功能的意图?

0 个答案:

没有答案