使用Django 1.10我正在建立一个博客/投资组合混合网站。除了Mysite,我有两个应用程序,Blog和Portfolio。在博客/模板/我有一个index.html,显示博客和投资组合的内容(15个最新的博客文章和5个最新的投资组合项目)。
因此index.html页面如下所示:
如您所见,数据未显示。但是,当我导航到Blog页面和Portfolio页面时,它会这样做。例如,博客页面:
我认为这个问题与我正在进行的多层次扩展有关。因为博客和投资组合页面都显示来自数据库的内容,所以我认为这些模型是O.K,但视图中有些东西。 index.html扩展了base_generic.html模板,而我的recent_blog_posts.html和recent_portfolio_pieces.html扩展了index.html。
我不确定如何解决这个问题。有什么建议我做错了吗?
项目结构
mysite/
---blog/
------static/
---------css/
---------images/
------------blogpostimages/
------------favicon.ico
------templates/
---------blog/
------------blog_post.html
------------blog_list.html
------------recent_blog_posts.html
---------base_generic.html
---------index.html
---------bio.html
---------resume.html
------admin.py
------apps.py
------models.py
------tests.py
------urls.py
------views.py
---portfolio/
------static/
---------css/
---------images/
------------portfoliopieceimages/
------templates/
---------portfolio/
------------portfolio_piece.html
------------portfolio_list.html
------------recent_portfolio_pieces.html
------admin.py
------apps.py
------models.py
------tests.py
------urls.py
------views.py
---mysite/
------settings.py
------urls.py
------wsgi.py
manage.py
db.sqlite3
requirements.txt
博客/ views.py
from django.shortcuts import render
from django.views import generic
# Create your views here.
from .models import Blog
def index(request):
"""
View function for home page of site.
"""
# Generate most recent blog post
title = Blog.objects.all()
post_date = Blog.objects.all()
get_absolute_url = Blog.objects.all()
# Render the HTML template index.html with the data in the context variable.
return render(
request,
'index.html',
context={'title': title,
'post_date': post_date,
'get_absolute_url': get_absolute_url,
}
)
def recent_blog_posts.html(request):
blog = Blog.objects.order_by('-post_date')[0:11]
return render(request, 'index.html', {'blog': blog})
class BlogListView(generic.ListView):
"""
Generic class-based view for a list of blog posts.
"""
model = Blog
paginate_by = 20
def get_queryset(self):
return Blog.objects.order_by('-post_date')
class BlogDetailView(generic.DetailView):
"""
Generic class-based detail view for a blog post.
"""
model = Blog
def bio(request):
return render(
request, 'bio.html'
)
def resume(request):
return render(
request, 'resume.html'
)
的index.html
<div>
<h2>Recent Blog Posts</h2>
<div>
{% block blogs %}
{% if blog_list %}
{% for blog in blog_list %}
<article>
<header>
<h4><small>{{blog.post_date}} » </small><a href="{{ blog.get_absolute_url }}">{{ blog.title }}</a></h4>
</header>
</article>
{% endfor %}
{% else %}
<p>Unfortunately, there are no blog posts yet.</p>
{% endif %}
</div>
{% endblock %}
</div>
<div>
<h2>Portfolio</h2>
{% if portfolio %}
{% for portfolio in portfolio %}
<div class="col-xs-12 col-sm-6 thumb">
<a class="thumbnail" href="{{ portfolio.get_absolute_url }}">
{% load static %}
<img class="img-responsive" src="{{ portfolio.cover_image }}" alt="">
<p>{{ portfolio.title }}</p>
<p>{{ portfolio.client_name }}</p>
</a>
</div>
{% endfor %}
{% else %}
<div>
<p>Unfortunately, there are no portfolio pieces yet.</p>
</div>
{% endif %}
答案 0 :(得分:0)
您必须在模板中使用变量pass到您的上下文。
因此,您必须将变量blog_list
传递给您的上下文,以便在模板中对其进行迭代。
以下示例:(仅适用于blog_list
)
def index(request):
"""
View function for home page of site.
"""
blog_list = Blog.objects.all()
# Render the HTML template index.html with the data in the context variable.
return render(request, 'index.html', context={'blog_list': blog_list})
答案 1 :(得分:0)
您需要在上下文中将数据传递给模板。通过在上下文中设置和传递变量,我真的不明白你在索引中想要做什么:
# Generate most recent blog post
title = Blog.objects.all()
post_date = Blog.objects.all()
get_absolute_url = Blog.objects.all()
Blog.objects.all()返回一个包含所有博客实例的查询集,而不是单个博客实例的title / post_date / get_absolute_url。
在模板中,您引用了两个上下文变量:blog_list和portfolio。您不在索引中设置变量。我也会避免这样的陈述:
{% for portfolio in portfolio %}
不要使用与迭代变量相同的变量名称,将后者更改为 portfolio 或 portfolio_list 。
为了使它成功,你可以试试这个:
<强> index.py 强>
def index(request):
blog_list = Blog.objects.all()
portfolio_list = Portfolio.objects.all()
return render(request, 'index.html',
context={'blog_list': blog_list, 'portfolio_list': portfolio_list}
)
在 index.html 文件中更改:
{% for portfolio in portfolio %}
到
{% for portfolio in portfolio_list %}