功能性网站与教程中的通用视图结合在一起的速度给我留下了深刻的印象。此外,表单处理的工作流程也很好。我使用 ModelForm 帮助器类从我制作的模型中创建了一个表单,并且很高兴看到这么多功能结合在一起。当我使用通用的 list_detail.object_detail 时,我很失望我能显示的都是单独的字段。我知道 ModelForm 类包含渲染信息,所以我想将 ModelForm 与通用视图一起使用。
我在 stackoverflow 上四处询问以获得一些方向,并感谢几位海报的答案和评论。我已经想出了如何让它工作,但是 DetailView 中有一个错误。该解决方案包括一种解决方法。
要将 ModelView 与通用视图一起使用并让所有字段自动呈现,请执行以下操作:
创建一个项目,并在其中创建应用程序住院患者。
如果你有
# inpatients/models.py
class Inpatient(models.Model):
last_name = models.CharField(max_length=30)
first_name = models.CharField(max_length=30,blank=True)
address = models.CharField(max_length=50,blank=True)
city = models.CharField(max_length=60,blank=True)
state = models.CharField(max_length=30,blank=True)
DOB = models.DateField(blank=True,null=True)
notes = models.TextField(blank=True)
def __unicode__(self):
return u'%s, %s %s' % (self.last_name, self.first_name, self.DOB)
class InpatientForm(ModelForm):
class Meta:
model = Inpatient
和
# inpatients/views.py
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts import render_to_response
from django.views.generic import DetailView
from portal.inpatients.models import *
def formtest(request):
if request.method == 'POST':
form = InpatientForm(request.POST)
if form.is_valid():
form.save()
return HttpResponseRedirect('/inpatients')
else:
form = InpatientForm()
return render_to_response("formtest.html", {'form': form})
class FormDetailView(DetailView):
model=Inpatient
context_object_name='inpatient' # defines the name in the template
template_name_field='inpatient_list_page.html'
def get_object(self):
inpatient=super(FormDetailView,self).get_object()
form=InpatientForm(instance=inpatient)
return form
def get_template_names(self):
return ['inpatient_list_page.html',]
和
#urls.py
from django.conf.urls.defaults import patterns, include, url
from django.views.generic import ListView
from portal.inpatients.models import Inpatient, InpatientForm
from portal.inpatients.views import FormDetailView
urlpatterns = patterns('',
(r'^formtest/$','portal.inpatients.views.formtest'),
(r'^inpatients/$', ListView.as_view(
model=Inpatient, template_name='inpatient_list_page.html')),
(r'^inpatient-detail/(?P<pk>\d+)/$', FormDetailView.as_view()),
)
# with a template containing
{% block content %}
<h2>Inpatients</h2>
<ul>
{% for aninpatient in object_list %}
<li><a href='/inpatient-detail/{{ aninpatient.id }}/'>
{{ aninpatient }}, id={{ aninpatient.id }}</a></li>
{% endfor %}
</ul>
{{ inpatient.as_p }}
{% endblock %}
# Yeah, kind of hokey. The template is for both the list view and detail view.
# Note how the form is rendered with one line - {{ inpatient.as_p }}
有用。使用基于类的通用视图的说明位于https://docs.djangoproject.com/en/1.3/topics/class-based-views/ 那里的说明非常清楚。使事情起作用的关键是重新定义get_object。在“执行额外工作”部分下的文档中,它很好地描述了如何执行此操作,步骤是调用 get_object 的原始版本,然后是额外的工作。我意识到返回对象可以是 ModelForm 对象。get_object 返回的对象直接进入渲染中的模板。通过获取检索到的住院对象并通过 InpatientForm 运行它,它可以作为表单传递给视图,然后呈现自身。
至于错误: DetailView 中的错误是 get_template_names 函数试图从不存在的结构中创建模板名称。在 https://code.djangoproject.com/browser/django/trunk/django/views/generic/detail.py 的第 127 到 140 行中,我们在 SingleObjectTemplateResponseMixin.get_template_names 中有:
127 # The least-specific option is the default <app>/<model>_detail.html;
128 # only use this if the object in question is a model.
129 if hasattr(self.object, '_meta'):
130 names.append("%s/%s%s.html" % (
131 self.object._meta.app_label,
132 self.object._meta.object_name.lower(),
133 self.template_name_suffix
134 ))
135 elif hasattr(self, 'model') and hasattr(self.model, '_meta'):
136 names.append("%s/%s%s.html" % (
137 self.model._meta.app_label,
138 self.model._meta.object_name.lower(),
139 self.template_name_suffix
140 ))
错误是第 131 行的代码已执行并因错误消息 <'ModelFormOptions' object has no attribute 'app_label'> 而死。我的结论是定义了 _meta 对象。我想问题是在 ModelForm 中定义了 Meta 类。该 Meta 可能没有设置预期的字段。解决方法就是重写 get_template_names 并返回正确的模板。
我是 Django 和 Python 的新手。我感谢贡献者对我之前提出的以下问题的回答和评论。( 将 list_detail.object_list 中的链接放到 list_detail.object_detail 中, 在 object_detail 中使用表单,在 Django 中滚动您自己的通用视图)
我应该怎么做才能报告错误?