簡體   English   中英

添加/編輯Django通用外鍵對象

[英]adding / editing django generic foreign key objects

型號設備:

class Device(models.Model):
    device_code = models.CharField(max_length=64,unique=True)
    is_enabled = models.BooleanField(default=False)

    def __unicode__(self):
        return u'%s: %s' % (self.device_code, 'ENABLED' if self.is_enabled else 'DISABLED')

模型屬性值:

class AttributeValue(models.Model):
    attribute = models.ForeignKey(Attribute)
    content_type = models.ForeignKey(ContentType)
    object_id = models.PositiveIntegerField()
    content_object = GenericForeignKey('content_type', 'object_id')

    class Meta:
        abstract = True
        unique_together = (
            ('attribute', 'content_type','object_id'),
        )
        index_together = (
            ('content_type','object_id'),
        )
    @property        
    def formatted(self):
        """
        PLEASE SELECT RELATED ATTRIBUTE BEFORE USING THIS FUNCTION
        """
        return self.attribute.format % self.value

    def save(self,*args,**kwargs):
        if hasattr(self.content_object,'invalidate_cache') and callable(self.content_object.invalidate_cache):
            self.content_object.invalidate_cache()
        super(AttributeValue,self).save(*args, **kwargs)


    def __unicode__(self):
        return u'%s %s' % (self.attribute.name, self.value)

class NumericAttributeValue(AttributeValue):
    value = models.DecimalField(max_digits=12,decimal_places=4)


class LongTextAttributeValue(AttributeValue):
    value = models.TextField()

class ShortTextAttributeValue(AttributeValue):
    value = models.CharField(max_length=255)

class FileAttributeValue(AttributeValue):
    attribute_file = models.FileField(upload_to="attribute_imgs")

型號屬性:

ATTRIBUTE_TYPE_CHOICES = (
    ('n','Numeric'),
    ('s','Short Text (255)'),
    ('m','Long Text')
)

class Attribute(models.Model):
        name = models.CharField(max_length=255)
        code = models.CharField(max_length=64,unique=True)
        attribute_type = models.CharField(max_length=1,choices=ATTRIBUTE_TYPE_CHOICES)
        sorting_order = models.PositiveIntegerField(default=0)
        show = models.BooleanField(default=False)
        format = models.CharField(max_length=64,default='%s')

        class Meta:
            ordering = ['sorting_order','name']

        def __unicode__(self):
            return self.name

在我的設備編輯(添加)頁面中,它需要能夠創建或選擇屬性,然后創建(或編輯/刪除)屬性值(可以是數字值,長文本值,短文本值或文件)與此屬性以及當前(或新的)設備相關聯。 您如何為這種情況創建Django表單集?

我不得不解決一個類似的問題,而django-polymorphic為我工作。

如果您將抽象模型定義為父模型,則它允許您在Django管理界面中選擇父模型所基於的任何子模型(例如,在選擇外鍵時)。

您必須在模型和管理員中進行一些更改才能使其正常運行(例如,您將不需要GenericForeignKey )。

https://django-polymorphic.readthedocs.org/en/latest/

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM