无法在django中显示图像

时间:2011-03-26 07:26:33

标签: django

我正在尝试使用推荐系统制作购物门户

无法在模板中显示图像... 打开HTML页面而不运行服务器会打开它们 尝试设置MEDIA_URL和MEDIA_ROOT

设置如下:

MEDIA_ROOT = "/home/jose/Estore/estore/images/"
MEDIA_URL = '/images/'

我定义的模型如下:

#Model for Books
from django.db import models

class Book(models.Model):

    title = models.CharField(max_length=100)
    section = models.CharField(max_length=50)
    authors = models.CharField(max_length=150)
    subject = models.CharField(max_length=50)
    publisher = models.CharField(max_length=50)
    publication_date = models.DateField(blank=True, null=True)
    price = models.DecimalField(max_digits=6,decimal_places=2)
    photo = models.ImageField(upload_to='product_photo/books/',blank=True)
    description = models.TextField()
    rating = models.DecimalField(max_digits=2,decimal_places=1)

    def __str__(self):
        return self.title

1 个答案:

答案 0 :(得分:1)

您是否设置了urlconf?

http://docs.djangoproject.com/en/dev/howto/static-files/#serving-other-directories

这是如何做到的。您需要设置此项以使静态服务正常工作。

这有帮助吗?