具有缩略图和生成的upload_to路径的ImageField

时间:2013-11-02 01:23:11

标签: django django-models django-admin django-settings

我在models.py中有以下代码:

def product_upload_to(instance, filename):
    return 'img/products/%s/large/%s' % (instance.uuid, filename,)

def thumb_upload_to(instance, filename):
    return 'img/products/%s/thumb/%s' % (instance.uuid, filename,)


class Product(BaseModel):
    company = models.ForeignKey(Company, null=True, blank=True)
    title = models.CharField(max_length=128)
    description = models.TextField()
    category = models.ForeignKey(ProductCategory, null=True, blank=True)
    price = models.DecimalField(max_digits=5,decimal_places=2,verbose_name="Cena")

    image = models.ImageField(upload_to=product_upload_to,null=True,blank=True)
    thumb = models.ImageField(upload_to=thumb_upload_to,null=True,blank=True)

    def save(self, force_update=False, force_insert=False, thumb_size=(120,120)):
        image = Image.open(self.image)
        image.thumbnail(thumb_size, Image.ANTIALIAS)

        temp_handle = StringIO()
        image.save(temp_handle, 'png')
        temp_handle.seek(0) # rewind the file
        suf = SimpleUploadedFile(os.path.split(self.image.name)[-1],
                                 temp_handle.read(),
                                 content_type='image/png')
        self.thumb.save(suf.name+'.png', suf, save=False)
        super(Product, self).save(force_update, force_insert)

我遇到了一些我无法解决的问题: - 为原始图像(图像区域)正确生成图像路径,但不为缩略图(缩略图区域)生成图像路径。

看起来像:

  • img / products / 6fddb163-435b-11e3-98fe-843835614698 / large / IMG_0171.JPG (适用于图像)
  • img / products / None / thumb / IMG_0171.JPG.png (对拇指不好)

另外,我不确定管理面板中的路径是否正确生成,因为它们是绝对的(例如:http://localhost:8000/admin/app/product/1/img/products/6fddb163-435b-11e3-98fe-843835614698/large/IMG_0171.JPG) - 我无法联系到它们。 img目录是直接在django项目目录中创建的,我不知道如何更改它在静态目录中创建。

你能帮我解决拇指路径和管理路径问题吗?

0 个答案:

没有答案