全面披露:我只是在学习 Django
我们网站的主页显示最近的博客文章。其中views.py
有一个类定义了可以调用的属性,post.get_attribute
用于调用主页上的最近帖子。我正在尝试在模型中添加一个新属性,featured_image
但无法让它在主页上呈现。
# From models.py
featured_image = models.ImageField(_('featured image'),
upload_to='images/posts',
blank=True, null=True)
# Added featured_image to class in views.py
def get_posts(request, post_type):
if post_type == 'personal':
posts = list(Post.personal_objects.all().values('title', 'slug',
'author__username',
'views',
'featured_image'))[:8]
elif post_type == 'business':
posts = list(Post.business_objects.all().values('title', 'slug',
'author__username',
'views',
'featured_image'))[:8]
else:
raise Http404
return HttpResponse(json.dumps(posts), mimetype='application/json')
我如何尝试在以下位置调用特色图片home.html
:
<a href="{{ post.get_absolute_url }}">
<img src="{{ post.get_featured_image_url }}" />
</a>
我缺少什么来获取这些图像?真的很感激任何见解。有关更广泛的上下文,请访问此链接。