0

我遵循了制作博客引擎的教程并成功集成了它。只是这个模板不起作用,我不知道为什么。可能是什么问题?

这是模板:

{% extends "base.html" %}

{% block title %}{% post.title %}{% endblock %}

{% block content %}

<h3>{{ post.title }}</h3>
<p>Posted on {{ post.published|date:"F j, Y" }}<p>

{{ post.description|safe }}
<br>
{{ post.body|safe }}
<br>

{% if previous_post %}
<a href="{{ previous_post.get_absolute_url }}" title="{{ previous_post.title }}">
&laquo;&nbsp;Previous Post:&nbsp;&nbsp;{{ previous_post.title }}
</a>{% endif %}

{% if previous_post and next_post %}&nbsp;|&nbsp;{% endif %}

{% if next_post %}
<a href="{{ next_post.get_absolute_url }}" title="{{ next_post.get_absolute_url }}">
Next Post:&nbsp;&nbsp;{{ next_post.title }}&nbsp;&raquo;
</a>
{% endif %}

{% endblock content %}

这是views.py:

def detail(request, sl):
try:
     post = Post.objects.filter(slug=sl)[0]
     try:
          previous_post = post.get_previous_by_published()
     except:
          previous_post = ""
     try:
          next_post = post.get_next_by_published()
     except:
          next_post = ""
except:
     next_post = ""
     previous_post = ""
     post = ""
return render_to_response('blog/detail.html', {'post':post,
                                        'next_post':next_post,
                                        'previous_post':previous_post,
                                                               },)
4

1 回答 1

1

好的,所以我发现并解决了我的问题。只是想把它贴在这里,以便有人可以使用它。这实际上是一个 n00b 错误。

所以 {{}} 没有渲染,因为“sl”中没有我在函数中作为参数调用的任何内容。它是空的,因为我正在学习一个教程,而该教程没有解释关于 Django 的一个非常重要的事情,那就是命名组可以作为参数添加到函数中,我没有名为“sl”的命名组urlconf 在适当的位置。所以通过添加这个:

(r'^([0-9]{4}/\d{1,2})/(?P<sl>.*)/$', detail),

在 urlconf 中问题已解决。

感谢所有的指导。

于 2012-06-07T15:23:10.673 回答