我们正在使用 Django 1.4 的新表单向导功能构建一个向导。
这方面的文档非常简洁,我们找不到任何高级示例。我们正在使用一个命名的步骤向导(需要支持我们使用的列表视图/数据网格)和一个会话后端。该向导旨在编辑角色和链接权限,旨在提供添加和编辑功能。我们通过在第一步询问用户是否要添加或编辑来做到这一点。
下一步取决于该选择;如果用户想要编辑,会有一个搜索屏幕,然后是一个显示结果的列表视图/数据网格。然后,用户可以选择其中一个结果并转到详细信息屏幕,然后是FilteredSelectMultiple页面,允许他/她将权限链接到该角色。
如果用户想要添加新角色,则跳过搜索和结果屏幕,用户直接进入详细信息屏幕,然后是链接屏幕。
这一切都很好,在 urls.py 中使用condition_dict,但我们想知道一些关于一般功能的事情:
When a specific pre-existing role is selected, how can we fill the details and the link-screen with the corresponding data?
我们是否实例化一个角色对象并以某种方式将其传递给两个表单,如果是,我们在哪里实例化它,我们是否需要分别为每个表单执行此操作(这似乎有点过头了)?
保存时,通常的做法是创建角色对象的另一个实例,将表单数据添加到其中并保存,还是我们可以以某种方式重新使用表单中使用的对象?
我们已经尝试重载get_form_instance以返回角色实例,并且我们在文档中查看了instance_dict,但感觉方法错误,并且在网上找不到示例,我们甚至不确定这些是否用于 pre -填充数据,或者即使我们走在正确的轨道上。
从逻辑上讲,我会说在选择现有角色的步骤中,我需要使用所选对象的实例来填充向导变量,并且这些变量会显示在表单中。在向导结束时,我们反转该过程并从向导变量中获取所有数据,并将它们添加到新实例化的角色对象中并保存它。理想情况下,此实例将自行确定是否需要执行 INSERT 或 UPDATE,具体取决于是否填充了主键。
如果任何人都可以提供一个例子,或者向正确的方向轻推,那将不胜感激。
views.py 中的 wizardview 类的代码如下:
class RolesWizard(NamedUrlSessionWizardView):
def get_template_names(self):
# get template for each step...
if self.steps.current == 'choice':
return 'clubassistant/wizard_neworeditrole.html'
if self.steps.current == 'search':
return 'clubassistant/wizard_searchrole.html'
if self.steps.current == 'results':
return 'clubassistant/wizard_pickrole.html'
if self.steps.current == 'details':
return 'clubassistant/wizard_detailsrole.html'
elif self.steps.current == 'rights':
return 'clubassistant/wizard_roles.html'
def get_context_data(self, form, **kwargs):
# get context data to be passed to the respective templates
context = super(RolesWizard, self).get_context_data(form=form, **kwargs)
# add the listview in the results screen
if self.steps.current == 'results':
# get search text from previous step
cleaned_data = self.get_cleaned_data_for_step('search')
table = RolesTable(Roles.objects.filter(
role_name__contains=cleaned_data['searchrole'])
)
RequestConfig(self.request, paginate={
"per_page": 4,
}).configure(table)
# add the listview with results
context.update({'table': table})
# add a role instance based on the chosen primary key
if self.steps.current == 'rights':
cleaned_data = self.get_cleaned_data_for_step('results')
role_id = cleaned_data['role_uuid']
role = get_object_or_404(Roles, pk=role_id)
context.update({'role': role})
return context
def done(self, form_list, **kwargs):
# this code is executed when the wizard needs to be completed
# combine all forms into a single dictionary
wizard = self.get_all_cleaned_data()
if wizard.get("neworeditrole")=="add":
role = Roles()
else:
role = get_object_or_404(Roles, pk=wizard.get("role_uuid"))
# many-to-many rights/roles
role.role_rights_new_style.clear()
for each_right in wizard.get('role_rights_new_style'):
RightsRoles.objects.create(role=role, right=each_right,)
# other properties
for field, value in self.get_cleaned_data_for_step('details'):
setattr(role, field, value)
role.save()
# return to first page of wizard...
return HttpResponseRedirect('/login/maintenance/roles/wizard/choice/')