4

全面披露:我只是在学习 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>

我缺少什么来获取这些图像?真的很感激任何见解。有关更广泛的上下文,请访问此链接。

4

1 回答 1

2

通过调用模型字段获取模板中的图像

{{ post.featured_image }}
于 2012-12-07T19:05:29.167 回答