我试图在formtools包中使用formwizard但没有成功(当包在早期版本的Django中时我能够做到)。
我得到的唯一回应是:
[23/Jan/2016 11:06:50]"GET /registration/wizard HTTP/1.1" 200 13729
和一个空白页面。浏览器或Eclipse控制台中没有错误。
没有错误的谷歌搜索方式。请帮忙。
提前致谢
我做了什么?
首先,我使用pip安装了formtools包:
django-formtools==1.0
Django==1.8.3
按照官方文件的说明:
定义表单类
登记/ forms.py
class StepForm1(forms.Form):
first_field = forms.CharField(max_length=100)
second_field = forms.CharField()
class StepForm2(forms.Form):
message = forms.CharField(widget=forms.Textarea)
创建WizardView
登记/ views.py
TEST_TEMPLATES = {"test_step_1": "registration/test_step1.html", "test_step_2": "registration/test_step2.html", }
from formtools.wizard.views import SessionWizardView
class WizardTest(SessionWizardView):
template_name = 'registration/test_wizard.html'
# Return templates for each step
def get_templates_name(self):
return [TEST_TEMPLATES[self.steps.current]]
# Method called when all is done
def done(self, form_list, **kwargs):
# return HttpResponseRedirect('/url-to-redirect-to/')
# We return the final template with the info
return render_to_response('test_done.html', {
'form_data':[form.cleaned_data for form in form_list],
})
# THESE METHODS BELOW ARE NOT NEEDED, BUT COMMENTED FOR FUTURE USE
# Not strictly needed. Returns data for a step
# or None if form is not valid
# def get_cleaned_data_for_step(self, step):
# return None
# Form data postprocessing in a concrete wizard step
# def process_step(self, form):
# return self.get_form_step_data(form)
# Handles value from a step before storing them into wizard
# def get_form_step_data(self, form):
# return form.data
创建模板
登记/ test_step1.html
<h1>Two fields form</h1>
<input id="first_field" name="first_field">
<input id="second_field" name="second_field">
登记/ test_step2.html
<h1>Message form</h1>
<input id="message" name="message">
登记/ test_wizard.html
{% extends "person/alumnos.html" %}
{% load i18n %}
{% block head %}
{{ wizard.form.media }}
{% endblock head %}
{% block content %}
<p>{% trans "Step {{wizard.steps.step1}} of {{wizard.steps.count}}" %}</p>
<form action="" method="post">
{% csrf_token %}
{{ wizard.management_form }}
{% if wizard.form.forms %}
{{ wizard.form.management_form }}
{% for form in wizard.form.forms %}
{{form}}
{% endfor %}
{% else %}
{{ wizard.form }}
{% endif %}
{% if wizard.steps.prev %}
<button name="wizard_goto_step" type="submit" value="{{ wizard.steps.first }}">{% trans "Beginning" %}</button>
<button name="wizard_goto_step" type="submit" value="{{ wizard.steps.prev }}">{% trans "Previous step" %}</button>
{% endif %}
<input type="submit" value="submit"/>
</form>
{% endblock %}
添加&#39; formtools&#39;到我的INSTALLED_APPS
settings.py
DJANGO_APPS = (
# Default Django apps:
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'formtools', # <===== HERE
# Useful template tags:
# 'django.contrib.humanize',
# Admin panel and documentation:
'django.contrib.admin',
# 'django.contrib.admindocs',
)
# Apps specific for this project go here.
LOCAL_APPS = (
'person',
'registration',
'teaching',
'utils',
)
# See: https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps
INSTALLED_APPS = DJANGO_APPS + LOCAL_APPS
登记/ urls.py
from registration.forms import StepForm1, StepForm2
TEST_FORMS = [("test_step_1", StepForm1), ("test_step_2", StepForm2), ]
from registration.views import WizardTest
# I tried in two ways, none of them worked
urlpatterns = patterns('',
url(r'^wizard$', WizardTest.as_view(TEST_FORMS), name='wizard_test'),
url(r'^wizard2$', views.wizard, name='wizard_test'),
)
第二种方式......
登记/ views.py
def wizard(request):
return WizardTest.as_view(TEST_FORMS)(request)
答案 0 :(得分:2)
您为模板提供了哪些示例? The basic layout is in the docs。尝试从这样的东西开始(如果您对formtools生成的字段没问题,两个页面都可以使用相同的模板):
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Form Wizard</title>
{{ wizard.form.media }}
</head>
<body>
{% load i18n %}
<p>Step {{ wizard.steps.step1 }} of {{ wizard.steps.count }}</p>
<form action="" method="post">{% csrf_token %}
<table>
{{ wizard.management_form }}
{% if wizard.form.forms %}
{{ wizard.form.management_form }}
{% for form in wizard.form.forms %}
{{ form }}
{% endfor %}
{% else %}
{{ wizard.form }}
{% endif %}
</table>
{% if wizard.steps.prev %}
<button name="wizard_goto_step" type="submit" value="{{ wizard.steps.first }}">{% trans "first step" %}</button>
<button name="wizard_goto_step" type="submit" value="{{ wizard.steps.prev }}">{% trans "prev step" %}</button>
{% endif %}
<input type="submit" name="submit" value="{% trans "submit" %}"/>
</form>
</body>
</html>
答案 1 :(得分:1)
我发现了我的错误。我输入了获取模板的方法名称。这不是
get_templates_name(self)
但是
get_template_names(self)
它没有获得任何模板,但是当返回到服务器时,它正在回答HTTP 200 OK,因为它没有发现任何错误。
我还发现每个步骤的模板都应该扩展主向导模板才能正常工作。使用'完成'模板不是必需的。
答案 2 :(得分:0)
导致self.cleaned_data['field']
对我为空的主要问题是我需要使用form.field.html_name
而不是form.field.name
作为模板的名称字段。
但是,从Django formtools提供的文档中还不清楚。这是我的模板页面的摘录,因此更加清晰:
<div class="form-group">
<label>{{ form.account_name.label }}</label>
<input name="{{ form.account_name.html_name }}"
value="{{ form.account_name.value|default_if_none:'' }}"
class="form-control">
</div>