Django - 显示图像和图像链接

时间:2012-01-29 22:11:03

标签: python django django-templates

我在显示图像和图像链接时遇到问题。我有一个模型方法('thumbnail_'),它应该显示一个缩略图,它是全尺寸图像的链接。它没有呈现给网页(image.html)。我究竟做错了什么?谢谢。

model.py

class Image(models.Model):
    title = models.CharField(max_length=60, blank=True, null=True)
    image = models.ImageField(upload_to="images/", blank=True, null=True)
    thumbnail = models.ImageField(upload_to="images/", blank=True, null=True)
    thumbnail2 = models.ImageField(upload_to="images/", blank=True, null=True)
    #tags = models.ManyToManyField(Tag, blank=True)
    #albums = models.ManyToManyField(Album, blank=True)
    created = models.DateTimeField(auto_now_add=True)
    #rating = models.IntegerField(default=50)
    width = models.IntegerField(blank=True, null=True)
    height = models.IntegerField(blank=True, null=True)
    listings = models.ForeignKey(Listings)

def save(self, *args, **kwargs):
    # Save image dimensions
    super(Image, self).save(*args, **kwargs)
    im = PImage.open(pjoin(MEDIA_ROOT, self.image.name))
    self.width, self.height = im.size

    # large thumbnail
    fn, ext = os.path.splitext(self.image.name)
    im.thumbnail((256,256), PImage.ANTIALIAS)
    thumb_fn = fn + "-thumb2" + ext
    tf2 = NamedTemporaryFile()
    im.save(tf2.name, "JPEG")
    self.thumbnail2.save(thumb_fn, File(open(tf2.name)), save=False)
    tf2.close()

    # small thumbnail
    im.thumbnail((60,60), PImage.ANTIALIAS)
    thumb_fn = fn + "-thumb" + ext
    tf = NamedTemporaryFile()
    im.save(tf.name, "JPEG")
    self.thumbnail.save(thumb_fn, File(open(tf.name)), save=False)
    tf.close()

    super(Image, self).save(*args, **kwargs)


def size(self):
    # Image size #
    return "%s x %s" % (self.width, self.height)

def thumbnail_(self):
    return """<a href = "/media/%s"><img border="0" alt="" src="/media/%s" /></a>""" % (
                                                        (self.image.name, self.thumbnail.name))
thumbnail_.allow_tags = True

def __unicode__(self):
    return self.image.name

view.py

def image(request):
    image = Image.objects.values('id', 'title', 'thumbnail_')
    context = {
        'image' : image,
    }
    return render_to_response('bsmain/image.html', context)

image.html

<TABLE id="some_id">    
<TBODY>
    {% load humanize %}
    {% for row in image %}
    <tr>
        <td>{{ row.id }}</td>
        <td>{{ row.title}}</td>
        <td>{{ row.thumbnail_}}</td>            
    </tr>
    {% endfor %}
</TBODY>

2 个答案:

答案 0 :(得分:1)

我很惊讶你得到任何东西。您认为这一行:

image = Image.objects.values('id', 'title', 'thumbnail_')

是不允许的,因为thumbnail_不是字段,它是Image类的方法。 values仅在字段上运行,返回包含这些名称的dicts的查询集。即使您在thumbnail调用中使用了实际字段values,模板仍然无法正确输出,因为thumbnail_方法在{返回的dict上不存在{1}}。

简单的解决方案是在此处使用标准values调用 - 尝试限制返回的字段数量过度优化。

(另外,请尝试为您的方法提供更好的名称:Image.objects.all()之类的内容比render_thumbnail更好。)

答案 1 :(得分:0)

我看不到任何名为thumbnail_的属性:

image = Image.objects.values('id', 'title', 'thumbnail_')

thumbnail = models.ImageField(upload_to="images/", blank=True, null=True)
thumbnail2 = models.ImageField(upload_to="images/", blank=True, null=True)

检查图像是否在正确的目录中。