我正在为django应用程序的几个模型创建一个视图。该应用程序基本上是一个带有一些自定义功能的管理员后端。
在每个项目的更新视图中,我认为最好只定义一个DetailView并动态获取模型名称。
1)对于每个模型,它是一个正确的方法还是更好的一个DetailView?
2)有可能吗?如果是这样,怎么办呢?
views.py
class EquipoUpdate(UpdateView):
model = DYNAMIC_MODEL
fields = ['codigo', 'equipo', 'nombre', 'fabricante', 'modelo', 'fecha_alta', 'fecha_baja', 'descripcion','datos_contacto']
success_url = reverse_lazy('listados-mantenimiento', kwargs={'model_type': 'componentes'})
template_name = 'manager/mto/mto_update.html'
urls.py
url(r'^mantenimiento/(?P<model_type>\w{0,50})/update/(?P<pk>\d+)$', views.EquipoUpdate.as_view()),
DYNAMIC_MODEL
是我想从urls.py获取的变量model_type
我的第一种方法是使用def get_context_data
:
def get_context_data(self, **kwargs):
modelo = self.kwargs['model_type']
context = super(MtoListView, self).get_context_data(**kwargs)
if (modelo == 'equipos'):
context['listado'] = Equipo.objects.all()
elif (modelo == 'componentes'):
context['listado'] = Componente.objects.all()
...
但我担心大型数据库会导致性能问题。
提前致谢。
答案 0 :(得分:1)
您可以在从get_queryset()
获取模型后覆盖model_kwarg
方法以返回相应模型的查询集。
要从model_type
kwarg获取模型,您可以创建MODEL_TYPE_KWARGS_TO_MODEL_MAPPING
字典。它将通过使用model_type
kwarg作为键对其执行查找来返回模型。当然,您必须为无效model_type
个案添加错误处理。
您可以执行以下操作:
class DynamicModelUpdate(UpdateView):
def get_queryset(self):
model = MODEL_TYPE_KWARGS_TO_MODEL_MAPPING[self.kwargs['model_type']]
return model.objects.all()