我正在关注 James Bennett 的 Practical Django Projects 中 coltrane(一个 django 博客)的示例,试图为我自己的自定义博客提供一个起点。我能够完成第一章中的大部分工作来整理我的博客,但是当他切换到通用视图时,它似乎中断了。
当我使用以下views.py时,我的博客有效:
def entry_list(request):
return render_to_response('blog/entry_listing.html',
{ 'entry_list': Entry.objects.all() },
context_instance=RequestContext(request))
def entry_detail(request, year, month, day, slug):
date_stamp = time.strptime(year+month+day, "%Y%b%d")
publish_date = datetime.date(*date_stamp[:3])
entry = get_object_or_404(Entry, publish_date__year=publish_date.year,
publish_date__month=publish_date.month,
publish_date__day=publish_date.day,
slug=slug)
return render_to_response('blog/entry_detail.html',
{ 'entry': entry },
context_instance=RequestContext(request))
网址.py:
entry_info_dict = {
'queryset': Entry.objects.all(),
'date_field': 'publish_date',
}
urlpatterns = patterns('',
('^blog/$','blog.views.entry_list'),
('^blog/(?P<year>\d{4})/(?P<month>\w{3})/(?P<day>\d{2})/(?P<slug>[-\w]+)/$','django.views.generic.date_based.object_detail',entry_info_dict),)
使用这些我可以创建一个博客条目列表(使用第一个 urlpattern),然后输入一个“详细视图”以查看完整条目(使用第二个 url 模式)。
然后建议我交换我的 urls.py 以使用通用视图来显示主博客列表,所以我的 url.py 变为:
entry_info_dict = {
'queryset': Entry.objects.all(),
'date_field': 'publish_date',
}
urlpatterns = patterns('',
('^blog/$', 'django.views.generic.date_based.archive_index', entry_info_dict),
('^blog/(?P<year>\d{4})/(?P<month>\w{3})/(?P<day>\d{2})/(?P<slug>[-\w]+)/$','django.views.generic.date_based.object_detail',entry_info_dict),)
我在我的模板中进行了相应的更改(创建一个 entry_archive.html,因为这个通用视图默认为一个 _archive.html 模板,并确保它使用通用的“对象”而不是“条目”作为参考),但没有出现。
模板是:
entry_archive.html
{% extends "base.html" %}
{% block content %}
<p>These are public blog entries.</p>
<ul>
{% for object in object_list %}
{% if object.status == object.LIVE_STATUS %}
{% include "blog/entry_summary.html" %}
{% endif %}
{% endfor %}
</ul>
{% endblock %}
entry_summary.html
<div class="blog_entry">
<h2 class="blog_title">{{ object.title }}</h2>
<div class="blog_date">Published on {{ object.publish_date }}</div>
<div class="blog_summary">{{ object.summary }}</div>
<div class="blog_image"></div>
<div class="blog_url"><a href="{{ object.get_absolute_url }}">Read full entry</a></div>
</div>
有什么想法不太对劲吗?