我想制作博客,里面有我的分类和帖子。 应显示类别,当您单击它时,您将被重定向到显示此类文章的另一个站点。
models.py:
class Category(CMSPlugin):
title = models.CharField(max_length=20, default='category')
def __unicode__(self):
return self.title
class Blog_post(CMSPlugin):
category = models.ForeignKey(Category)
style = models.ForeignKey(Blog_style)
title = models.CharField(max_length=200, default='title')
description = models.CharField(max_length=200,default='description')
image = models.ImageField(upload_to='static', null=True, blank=True)
text = models.TextField()
created_date = models.DateTimeField(default=timezone.now)
published_date = models.DateTimeField(blank=True, null=True)
def publish(self):
self.published_date = timezone.now()
self.save()
def __unicode__(self):
return self.title
views.py
def Blog_list(request):
posts = Blog_post.objects.filter(published_date__lte=timezone.now()).order_by('published_date')
category = Category.objects.all()
return render(request, 'blogspot.html', {'posts': posts, 'category':category})
def post_detail(request, pk):
post = get_object_or_404(Blog_post, pk=pk)
return render(request, 'post_detail.html', {'post': post})
def category_detail(request, pk):
cat = get_object_or_404(Category, id=pk)
post_with_category = Blog_post.objects.filter(category=cat)
return render(request, 'articles.html', {'post_with_category': post_with_category})
blogspot.html
{% for post in posts %}
<h1><a href="{% url 'post_detail' pk=post.pk %}">{{post.title}}</a></h1>
<a href="{% url 'category_detail' pk=post.category.id %}" >{{ post.category }}</a>
{{post.title}}
{{ post.description }}
{{ post.image }}
{{ post.text }}{{ post.published_date }}
{% endfor %}
到目前为止一切正常。我可以点击{{post.title}}并重新定向到post_detail。现在我想用类别制作相同的逻辑。当我点击{{post.category}}时,我想重定向到articles.html,在那里你可以看到特定类别的所有文章。
编辑:
我插入代码以显示类别中的帖子。我坚持循环。如果我使用帖子中提到的循环,我会得到所有帖子和类别。问题是如果我在一个类别中有2个帖子,这个循环将显示2x&#34; category&#34;在模板中。
所以我编辑了我的for循环。
{% for post in category %}
{{post.title}}
{% endfor %}
如果我在此循环中插入<a href="{% url 'category_detail' pk=post.category.id %}" >{{post.title}}
,则无法进行反向匹配。
我试图修改views.py category_detail
网址应该看起来像localhost/<category>/
另一个问题是,"select*from Table Where Column_id= id ;
urls.py
url(r'^blog/$', views.Blog_list, name='Blog_list'),
url(r'^blog/(?P<pk>\d+)/$', views.post_detail, name='post_detail'),
答案 0 :(得分:2)
如果我理解你的问题,django允许你通过主对象引用FK对象。因此,由于您的post.category
是Category
模型的一个实例,因此您应该可以使用post.category.id
进行反向查找,因此您的模板将具有以下内容:< / p>
<a href="{% url 'category_detail' pk=post.category.id %}" >{{ post.category }}</a>
然后,在category_detail
视图中,您只需使用pk
进行查找:
cat = get_object_or_404(Category, id=pk)
post_with_category = Blog_post.objects.filter(category=cat)
然后,您可以通过新的post_with_category
对象列表在新的网址链接上显示具有相同类别的帖子列表。
编辑:
您的网址会希望包含以下内容,以便上述html href标记可用:
url(r'^cat/(?P<pk>[0-9]+)/$', views.category_detail, name='category_detail'),