Django的。产品的几个图像

时间:2017-02-26 08:49:36

标签: python django

我想为我的产品添加几张图片

models.py:

class Product(models.Model):
    category = models.ForeignKey(Category, related_name='products')
    name = models.CharField(max_length=200, db_index=True)
    slug = models.SlugField(max_length=200, db_index=True)
    short_description = models.CharField(max_length=200, blank=True)
    description = models.TextField(blank=True)
    product_information = models.TextField(blank=True)
    price = models.DecimalField(max_digits=10, decimal_places=0)
    stock = models.PositiveIntegerField()
    available = models.BooleanField(default=True)
    created = models.DateTimeField(auto_now_add=True)
    updated = models.DateTimeField(auto_now=True)
    class Meta:
        ordering = ('name',)
        index_together = (('id', 'slug'),)
    def __str__(self):
        return self.name

    def get_absolute_url(self):
        return reverse('shop:product_detail',
                        args=[self.category.slug, self.slug])

class Images (models.Model):
    product = models.ForeignKey(Product, default=None, related_name='images')
    image = models.ImageField(upload_to='products/%Y/%m/%d', blank=True)

但我无法通过管理页面上传图片。 admin.py

class ProductAdmin(admin.ModelAdmin):
    list_display = ['name', 'slug', 'category', 'price', 'stock', 'available', 'created', 'updated']
    list_filter = ['available', 'created', 'updated', 'category']
    list_editable = ['price', 'stock', 'available']
    prepopulated_fields = {'slug': ('name',)}
admin.site.register(Product, ProductAdmin)

如何更改我的代码,以便能够使用管理页面为我的产品添加多个图像? 我应该如何在页面代码中调用图像?

现在我使用{{product.image}}

调用图像

我花了很多时间来寻找答案。请帮忙。 =)

3 个答案:

答案 0 :(得分:1)

您可以在此处使用的是管理内联,可帮助您轻松编辑/更新相关项目。

class ProductImagesInline(admin.StackedInline):
    model = Images

class ProductAdmin(admin.ModelAdmin):
    list_display = ['name', 'slug', 'category', 'price', 'stock', 'available', 'created', 'updated']
    list_filter = ['available', 'created', 'updated', 'category']
    list_editable = ['price', 'stock', 'available']
    prepopulated_fields = {'slug': ('name',)}
    inlines = [ProductImagesInline]

图片一旦您可以像product.images.all()

那样访问它们

答案 1 :(得分:1)

使用Image的{​​{3}}个管理员之一(是的,您应该给它一个单数名称!)模型:

class ImageInline(admin.TabularInline):
    model = Image

class ProductAdmin(admin.ModelAdmin):
    ...
    inlines = [
        ImageInline,
    ]

要在模板中正确显示图片,您应该考虑使用Inlinesorl等缩略图库:

# sorl example
{% for image in product.images.all %}
    {% thumbnail image.image "500x500" format="PNG" upscale=False as thumb %}
    #                  ^^^^^ you need the image field here
    <img src="{{ thumb.url }}" alt="{{ product.name }}">
    {% endthumbnail %}
{% endfor %}

除此之外,您还可以通过easy-thumbnails访问Image的网址。这是您的原始图像文件将被提供的位置。这需要您正确配置MEDIA_ROOTMEDIA_URL

答案 2 :(得分:1)

callback = [EarlyStopping(monitor='val_loss', value=45, verbose=0, mode='auto')]